/*
 * Main Stylesheet
 * Contains general styles for the application.
 * Includes styles for marketing section and testimonials.
 */

/* Basic body styling for better readability */
body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* Marketing Section Styles (Existing) */
.marketing-section h1 {
    color: #0056b3;
    text-align: center;
    margin-bottom: 10px;
}

.marketing-section p {
    text-align: center;
    color: #555;
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Testimonials Section Styles (New) */
#testimonials-section {
    padding: 40px 20px;
    background-color: #e9ecef;
    text-align: center;
}

#testimonials-section h2 {
    color: #0056b3;
    margin-bottom: 30px;
    font-size: 2em;
}

#testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push author to the bottom if needed */
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    flex-grow: 1; /* Allow text to take up available space */
}

.testimonial-author {
    text-align: right;
    font-weight: bold;
    color: #333;
    margin-top: 10px; /* Add some space above the author name */
}

/* Basic responsiveness adjustments */
@media (max-width: 768px) {
    #testimonials-section {
        padding: 30px 15px;
    }

    #testimonials-section h2 {
        font-size: 1.7em;
    }

    #testimonials-container {
        gap: 15px;
    }

    .testimonial-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    #testimonials-section h2 {
        font-size: 1.5em;
    }

    #testimonials-container {
        grid-template-columns: 1fr; /* Stack items on very small screens */
    }
}
