/* ===== Base Styling ===== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    color: #222;
}

/* ===== Banner ===== */
.program-banner {
    width: 100%;
    background: #000;
    margin-top: 80px;
}

.program-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===== Section Titles ===== */
.section-title h2 {
    font-weight: 700;
    color: #0f3d3e;
}

.section-title p {
    color: #6c757d;
    max-width: 750px;
    margin: 0 auto;
}

/* ===== Intro Section ===== */
.program-intro {
    padding: 80px 0;
}

.program-intro h4 {
    font-weight: 600;
    color: #0f3d3e;
}

.program-intro p {
    color: #555;
    line-height: 1.8;
}

/* ===== Symptoms Section ===== */
.program-symptoms {
    background-color: #f1f5f9;
    padding: 80px 0;
}

.symptom-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.symptom-card i {
    font-size: 38px;
    color: #16a085;
    margin-bottom: 12px;
}

.symptom-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.symptom-card p {
    font-size: 14.5px;
    color: #6c757d;
}

.symptom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(26, 188, 156, 0.35);
}

/* ===== Treatment Process ===== */
.program-process {
    padding: 80px 0;
}

.process-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.process-card span {
    font-size: 34px;
    font-weight: 800;
    color: #16a085;
    display: block;
    margin-bottom: 10px;
}

.process-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14.5px;
    color: #6c757d;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(26, 188, 156, 0.35);
}

/* ===== Benefits Section ===== */
.program-benefits {
    background-color: #f1f5f9;
    padding: 80px 0;
}

.benefit-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.benefit-card i {
    font-size: 36px;
    color: #16a085;
    margin-bottom: 12px;
}

.benefit-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14.5px;
    color: #6c757d;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(26, 188, 156, 0.35);
}

/* ===== Recovery System Section ===== */
.recovery-system {
    padding: 100px 0;
    background: #ffffff;
}

.recovery-system .section-title h2 {
    font-size: 36px;
    font-weight: 800;
}

.recovery-system .section-title p {
    max-width: 760px;
    margin: 10px auto 0;
    color: #555;
}

/* System Cards */
.system-card {
    background: #f9fefe;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    padding-bottom: 25px;
}

.system-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.system-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.system-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 18px 0 10px;
    color: #16a085;
}

.system-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    padding: 0 20px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .comparison-wrapper {
        flex-direction: column;
    }

    .comparison-side {
        width: 100%;
    }

    .comparison-divider {
        width: 100%;
        margin: 20px 0;
    }

    .comparison-divider::before {
        width: 80px;
        height: 3px;
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
    }
}
