.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.testimonials-title p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #d4af37;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 14px;
    color: #999;
}

.testimonial-rating {
    display: flex;
    margin-bottom: 15px;
}

.star {
    color: #d4af37;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.testimonial-content p {
    margin-bottom: 0;
}

.testimonial-source {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-source img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.testimonial-source span {
    font-size: 14px;
    color: #999;
}

.testimonials-footer {
    text-align: center;
    margin-top: 50px;
}

.testimonials-footer .btn {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.testimonials-footer .btn:hover {
    background-color: #f5f5f5;
}

.testimonials-footer .btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}
