:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #3498db;
    --light: #ecf0f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.header {
    background: linear-gradient(135deg, var(--primary), #1a1a2e);
    color: var(--light);
    padding: 3rem 1rem;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.cta {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Testimonials with Background Image */
.testimonials-bg {
    background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 3rem 1rem;
    margin: 2rem 0;
    position: relative;
}

.testimonials-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.85);
}

.testimonials {
    position: relative;
    text-align: center;
    color: white;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.testimonial {
    width: 160px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
    color: #333;
}

.testimonial-face {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 3px solid var(--accent);
}

.testimonial-text {
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 5px;
}

.testimonial-name {
    font-weight: bold;
    font-size: 0.8rem;
}

.disclaimer {
    text-align: center;
    font-size: 0.7rem;
    color: #7f8c8d;
    padding: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .testimonial { width: 140px; }
}