:root {
    --primary: #e74c3c;
    --secondary: #3498db;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --accent: #f39c12;
    --text: #333;
    --text-light: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: #f9f5f0;
    background-image: url('./bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(249, 245, 240, 0.9);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.logo span {
    font-size: 0.8em;
}

.slogan {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    margin: 20px 0;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 15px auto;
}

.card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.therapist {
    text-align: center;
}

.therapist-img {
    width: 100%;
    height: 0;
    padding-bottom: 130%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
}

.therapist-img-1 {
    background-image: url('./4.jpg');
}

.therapist-img-2 {
    background-image: url('./5.jpg');
}

.therapist-img-3 {
    background-image: url('./6.jpg');
}

.therapist-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.therapist-specialty {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial {
    text-align: center;
    font-style: italic;
    padding: 20px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 10px;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    margin-top: 15px;
    font-style: normal;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    cursor: pointer;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--accent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-date {
    font-weight: 700;
    color: var(--primary);
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    margin: 40px 0;
}

.stat-item {
    margin: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.bg-light {
    background-color: rgba(255,255,255,0.8);
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.footer-link {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline:before {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
}
