/* Therapies Page Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.therapies-hero {
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1) 0%, rgba(32, 178, 170, 0.05) 100%);
    padding: 80px 0 60px 0;
    text-align: center;
}

.therapies-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.therapies-hero-content .lead {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Section */
.therapies-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: #008B8B;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.intro-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #008B8B, #20B2AA);
    border-radius: 2px;
}

.intro-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Therapies Grid */
.therapies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.therapy-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.therapy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.15);
    border-color: #008B8B;
}

.therapy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1) 0%, rgba(32, 178, 170, 0.1) 100%);
    border: 2px solid #008B8B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.therapy-card:hover .therapy-icon {
    background: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
    transform: scale(1.1);
}

.therapy-icon i {
    font-size: 28px;
    color: #008B8B;
    transition: color 0.3s ease;
}

.therapy-card:hover .therapy-icon i {
    color: #ffffff;
}

.therapy-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.therapy-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.therapy-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.therapy-features li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.therapy-features li i {
    color: #008B8B;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .therapies-hero-content h1 {
        font-size: 32px;
    }
    
    .therapies-hero-content .lead {
        font-size: 16px;
    }
    
    .intro-section h2 {
        font-size: 28px;
    }
    
    .therapies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .therapy-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .therapies-hero {
        padding: 60px 0 40px 0;
    }
    
    .therapies-hero-content h1 {
        font-size: 26px;
    }
    
    .therapies-content {
        padding: 60px 0;
    }
    
    .intro-section h2 {
        font-size: 24px;
    }
}
