
.testimonial-section {
    padding: 50px 20px;
    text-align: center;
}

.testimonial-title {
    font-size: 2.5rem;
    color: var(--secondary-dark);
    margin-bottom: 10px;
    font-weight: 1000;
}

.testimonial-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.testimonial-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid var(--text-color);
    padding: 2px;
}

.testimonial-profile-name {
    font-weight: bold;
    color: var(--text-color);
}

.testimonial-text {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-title {
        font-size: 2rem;
    }

    .testimonial-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(250px, 1fr));
    }
}