/* =====================================================
   HelpStar — What We Treat Page Styles
   ===================================================== */

/* ── Hero Banner ── */
.treat-hero {
    background-color: #F5F0E8;
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.treat-hero::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -40px;
    width: 220px;
    height: 220px;
    border: 3px solid #00A87A;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.treat-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.treat-hero-title span {
    color: #00A87A;
}

.treat-hero-subtitle {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    max-width: 650px;
}

/* ── Dark Info Banner ── */
.treat-info-banner {
    background-color: #1B4D3E;
    padding: 3rem 0;
}

.treat-info-label {
    color: #F5A623;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.treat-info-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* ── Condition Cards Grid ── */
.treat-conditions-section {
    padding: 4rem 0;
}

.treat-section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 0.5rem;
}

.treat-section-heading span {
    color: #00A87A;
}

.treat-section-subheading {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.treat-condition-card {
    background: #fff;
    border: 1.5px solid #d8e8e4;
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.treat-condition-card:hover {
    border-color: #00A87A;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,168,122,0.08);
}

.treat-condition-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.treat-condition-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.65rem;
}

.treat-condition-card p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.treat-condition-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #00A87A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
}

.treat-condition-link:hover {
    gap: 0.6rem;
    color: #1B4D3E;
}

/* ── CTA Banner ── */
.treat-cta {
    background-color: #2E7D6E;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.treat-cta::after {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -60px;
    width: 240px;
    height: 240px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.treat-cta-title {
    color: #F5A623;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.treat-cta-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 500px;
}

.treat-cta-btn {
    background-color: #F5E642;
    color: #1a1a2e;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s, transform 0.2s;
}

.treat-cta-btn:hover {
    background-color: #e9d800;
    color: #1a1a2e;
    transform: translateY(-2px);
}
