/* CSS from section:testimonials */
.testimonials-section {
    position: relative;
    background: linear-gradient(90deg, #fff7ed 0%, #fffbeb 100%);
    padding: 96px 0 64px;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.section-title {
    color: #5a4f4d;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    margin: 0 0 88px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 88px 40px;
    justify-items: center;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 80px 40px 40px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #ffffff;
}

.testimonial-quote {
    margin: 0 0 18px 0;
}

.testimonial-quote p {
    margin: 0;
    color: #374151;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.testimonial-author {
    color: #ea580c;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    font-style: normal;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .section-title {
        margin-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 72px;
    }
    .testimonial-card {
        padding: 60px 24px 32px;
    }
    .testimonial-avatar {
        width: 80px;
        height: 80px;
        top: -40px;
    }
}
