/* =================================================================== */
/* ==   Clean & Static Testimonial Styles (Version 3.0 - Simple)    == */
/* =================================================================== */

/* --- General Page & Section Styling --- */
#allay-testimonials-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: clamp(2.5em, 5vw, 3.5em);
    margin-bottom: 0.2em;
    color: #2d3748;
}

.sub-headline {
    font-size: clamp(1.1em, 2.5vw, 1.25em);
    color: #718096;
    max-width: 650px;
    margin: 0 auto;
}

/* --- The Testimonial Grid --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* --- Static Card Styling (Main Focus) --- */
.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Needed for the decorative quote mark */
}

/* --- Subtle Hover "Lift" Effect --- */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* --- Decorative Quote Mark (Adds a touch of class) --- */
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6em;
    font-family: Georgia, serif;
    color: #edf2f7; /* Very light grey */
    z-index: 0;
    line-height: 1;
}

/* --- Typography for Readability --- */
.testimonial-card blockquote,
.testimonial-card footer {
    position: relative; /* Ensures text appears above the decorative quote mark */
    z-index: 1;
}

.testimonial-card blockquote {
    font-size: 1.05em;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 20px 0;
    border: none;
    flex-grow: 1; /* Allows footer to stick to the bottom if cards are equal height */
}

.testimonial-card footer {
    font-weight: 600;
    color: #2d3748;
    font-size: 1em;
}


/* --- Expert Endorsement Section Styling --- */
.expert-endorsement {
    background-color: #f7fafc;
    padding: clamp(40px, 8vw, 80px) 20px;
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}
/* (The rest of the expert endorsement styles from before are still good) */
.expert-content h2 { font-size: clamp(2em, 4vw, 2.5em); margin-bottom: 40px; color: #2d3748; }
.expert-quote { max-width: 800px; margin: 0 auto; }
.expert-quote blockquote { font-size: clamp(1.1em, 2.5vw, 1.3em); font-style: italic; line-height: 1.6; border: none; margin: 0 0 20px 0; color: #4a5568; }
.expert-quote strong { font-style: normal; color: #0073aa; }
.expert-quote footer { font-size: 1.1em; font-weight: 600; color: #718096; }