/* Treatment Section */

.treatments-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #7dd3dc;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.treatment-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-title {
    font-size: 1.3rem;
    color: #7dd3dc;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.treatment-list {
    list-style: none;
}

.treatment-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555;
}

.treatment-list li::before {
    content: "●";
    color: #7dd3dc;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #7dd3dc;
    border: 2px solid #7dd3dc;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.view-all-btn:hover {
    background: #7dd3dc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 211, 220, 0.3);
}


/* Common condition */

.conditions-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #7dd3dc;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.condition-card {
    background: #7dd3dc;
    color: white;
    padding: 25px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(125, 211, 220, 0.3);
}

.condition-card:hover {
    background: #6bc5ce;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(125, 211, 220, 0.4);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #7dd3dc;
    border: 2px solid #7dd3dc;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #7dd3dc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 211, 220, 0.3);
}

.cta-btn.primary {
    background: #7dd3dc;
    color: white;
}

.cta-btn.primary:hover {
    background: #6bc5ce;
    border-color: #6bc5ce;
}
