/* Testimonials Section */
.testimonials {
    background-color: #FFFFFF;
    padding: 120px 20px 100px;
    position: relative;
    z-index: 5;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2C3E5D;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.testimonial-logo {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-logo {
    max-width: 200px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.testimonial-text {
    font-size: 1.25rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E5E7EB;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2C3E5D;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.9rem;
    color: #6C757D;
    font-weight: 400;
}

.testimonials-button {
    background: #1E90FF;
    color: #FFFFFF;
    border: none;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
}

.testimonials-button:hover {
    background: #1C7ED6;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(30, 144, 255, 0.4);
}

.testimonials-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials {
        padding: 100px 20px 80px;
    }

    .testimonials-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    .company-logo {
        max-width: 180px;
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 20px 60px;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .testimonial-logo {
        margin-bottom: 40px;
    }

    .company-logo {
        max-width: 160px;
        max-height: 60px;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-role {
        font-size: 0.85rem;
    }

    .testimonials-button {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 60px 20px 50px;
    }

    .testimonials-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .testimonial-logo {
        margin-bottom: 30px;
    }

    .company-logo {
        max-width: 140px;
        max-height: 50px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .testimonial-author {
        margin-bottom: 40px;
        gap: 12px;
    }

    .testimonials-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}