.page-header { padding: 180px 0 80px; background: linear-gradient(135deg, var(--beige) 0%, #e8e4d9 100%); text-align: center; }
.page-header h1 { font-size: 48px; letter-spacing: 6px; margin-bottom: 15px; }
.page-header p { font-size: 18px; color: var(--gray-text); }
.testimonials-page { padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.testimonial-card { background: var(--white); padding: 40px; border: 1px solid var(--line-color); text-align: center; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.testimonial-content { margin-bottom: 30px; }
.testimonial-content p { font-size: 16px; line-height: 1.8; color: var(--gray-text); font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.testimonial-author img { border-radius: 50%; object-fit: cover; }
.author-info h4 { font-size: 16px; margin-bottom: 5px; }
.author-info p { font-size: 14px; color: var(--gray-text); }
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } .page-header h1 { font-size: 32px; } }
