/* Testimonials Section Styling */
.testimonials-section {
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-header h2 {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #c3c3c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.testimonials-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 340px;
    min-width: 260px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.13);
}

.testimonial-quote {
    font-size: 18px;
    color: #fff;
    margin-bottom: 18px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-link {
    font-size: 14px;
    color: #7ecfff;
    text-decoration: none;
    margin-top: auto;
}

.testimonial-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 0 20px;
    }

    .testimonials-header h2 {
        font-size: 36px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .testimonials-list {
        gap: 18px;
    }
}

/*@media (max-width: 768px) {*/
/*    .testimonials-section {*/
/*        padding: 40px 10px 30px 10px;*/
/*    }*/
/*    .testimonials-list {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/
/*    .testimonial-card {*/
/*        width: 100%;*/
/*        max-width: 100%;*/
/*    }*/
/*}*/