﻿:root {
    --platinum-title: #7e8793;
}
.testimonials-section {
    --platinum-title: #7e8793;
    --platinum-text: #2d3240;
    --platinum-accent: #b8c4d7;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #fafdff 0%, #e3e6ea 100%);
    color: var(--platinum-text);
    font-family: 'Montserrat', 'Inter', 'Segoe UI', Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto 1.3rem auto;
    box-shadow: 0 4px 32px 0 rgba(160,170,190,0.09), 0 1.5px 3px rgba(70,90,125,0.06);
}

.testimonials-container {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.testimonials-title {
    color: var(--platinum-title) !important;
    font-family: 'Montserrat', 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 2.15rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-align: center;
    margin-bottom: 1.3rem;
    text-shadow: 0 2px 8px #dee4ec, 0 1px 0 #fff, 0 0.5px 0 #d9dde2;
}

.testimonials-quotes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    width: 100%;
}

.testimonial-quote {
    font-size: 1.18rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--platinum-text);
    background: linear-gradient(98deg, #fafdff 60%, #e9eef3 100%);
    border-left: 5px solid var(--platinum-accent);
    border-radius: 16px;
    padding: 1.5rem 2rem 1.5rem 1.6rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 3px 18px 0 rgba(130, 143, 158, 0.07), 0 1.5px 5px rgba(180,200,215,0.05);
    position: relative;
    font-family: inherit;
}

    .testimonial-quote::before,
    .testimonial-quote::after {
        color: var(--platinum-accent);
        font-family: 'Playfair Display', serif;
        opacity: 0.45;
        font-size: 2.8rem;
        line-height: 1;
        position: absolute;
    }

    .testimonial-quote::before {
        content: "❝";
        left: -1.4rem;
        top: -1.5rem;
    }

    .testimonial-quote::after {
        content: "❞";
        right: -1.4rem;
        bottom: -1.5rem;
    }

@media (max-width: 700px) {
    .testimonials-title {
        font-size: 1.35rem;
    }

    .testimonial-quote {
        font-size: 1.01rem;
        padding: 1.2rem 1rem 1.2rem 1rem;
        border-radius: 12px;
    }
}
