        :root {
            --green: #112240;
            --green-dark: #112240;
            --green-light: #fcf5ec;
            --gold: #d97736;
            --gold-light: #faf6f2;
            --text: #1a1a1a;
            --border: #dee2e6;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
        }

        h6 {
            color: var(--gold)
        }

        p, span, li {
            margin: 0;
            font-size: 15px;
        }

        li::marker {
            color: var(--gold);
        }

        .treatment-img img {
            border-radius: 15px;
            height: 280px;
            width: 100%;
        }

        .btn-primary-green {
            background: var(--gold);
            color: #fff;
            border: none;
            font-weight: 600;
            padding: 13px 28px;
            border-radius: 25px;
            font-size: 15px;
        }

        .btn-primary-green:hover {
            background: var(--gold);
        }

        .btn-outline-white {
            border: 2px solid rgba(255, 255, 255, .6);
            color: #fff;
            background: transparent;
            font-weight: 600;
            padding: 11px 26px;
            border-radius: 25px;
            font-size: 15px;
        }

        .btn-outline-white:hover {
            border: 2px solid rgba(255, 255, 255, .6);
            color: #fff;
            background: transparent;
        }

        /* ── Hero ── */
        .hero {
            background: linear-gradient(135deg, rgb(30 27 67 / 60%) 0%, rgba(14, 3, 59, 0.85) 100%), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1400&q=80&fit=crop') center center / cover no-repeat;
            padding: 72px 0 56px;
            color: #fff;
        }

        /* ── Section labels ── */
        .section-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .section-title {
            color: var(--green-dark);
        }

        /* ── Stage cards ── */
        .stage-card {
            border-bottom: 1px solid var(--border);
            padding: 22px;
        }

        .stage-num {
            width: 36px;
            height: 36px;
            background: var(--green);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 14px;
        }

        .stage-card h5 {
            font-size: 20px;
            color: var(--green-dark);
        }

        /* ── Symptoms ── */
        .symptom-check {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
        }

        .symptom-check:last-child {
            border-bottom: none;
        }

        .symptom-check .icon {
            color: var(--gold);
            font-size: 17px;
            margin-top: 1px;
            flex-shrink: 0;
        }

        /* ── Cause cards ── */
        .cause-card {
            background: #fff;
            border: 1px solid var(--border);
            border-left: 3px solid var(--gold);
            border-radius: 8px;
            padding: 20px;
            height: 100%;
            margin-top: 10px;
        }

        .cause-card h6 {
            color: var(--green-dark);
            font-size: 19px;
        }

        /* ── Treatment steps ── */
        .treatment-step {
            display: flex;
            gap: 18px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
        }

        .treatment-step:last-child {
            border-bottom: none;
        }

        .step-num {
            width: 44px;
            height: 44px;
            background: var(--green-dark);
            color: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .treatment-step h6 {
            font-size: 1rem;
            color: var(--green-dark);
            margin-bottom: 4px;
        }

        /* ── Warning box ── */
        .warning-box {
            border-left: 4px solid var(--gold);
            border-radius: 8px;
            padding: 20px 22px;
        }

        .warning-box h6 {
            color: var(--gold);
            font-weight: 700;
            font-size: 17px;
            text-transform: uppercase;
            letter-spacing: .8px;
        }

        .accordion-button:not(.collapsed) {
            background: var(--green-light);
            color: var(--green-dark);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-button {
            font-weight: 600;
            font-size: 15px;
        }

        .callback-card {
            background: var(--gold-light);
            border: 1px solid #e8c9a0;
            border-radius: 10px;
            padding: 24px;
            position: sticky;
            top: 80px;
        }

        .callback-card h5 {
            color: var(--green-dark);
        }

        .callback-card .form-control,
        .callback-card .form-select {
            font-size: 14px;
            border-color: #d4b896;
        }

        .callback-card .form-control:focus,
        .callback-card .form-select:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(45, 106, 79, .15);
        }

        .btn-callback {
            background: var(--green-dark);
            color: #fff;
            width: 100%;
            border: none;
            font-weight: 600;
            padding: 11px;
            border-radius: 6px;
            font-size: 15px;
        }

        .btn-callback:hover {
            background: var(--green);
            color: #fff;
        }


        .intake-card {
            background: #fff;
            border-radius: 14px;
            padding: 28px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
        }

        .intake-progress {
            background: #e9ecef;
            border-radius: 50px;
            height: 5px;
            overflow: hidden;
        }

        .intake-progress-bar {
            background: #320252;
            height: 100%;
            border-radius: 50px;
            transition: width .4s ease;
        }

        .intake-step-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
        }

        .intake-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--green);
        }

        .intake-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .intake-option {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #f4f6f8;
            border: 1.5px solid #dee2e6;
            border-radius: 6px;
            padding: 7px 13px;
            font-size: 13px;
            font-weight: 500;
            color: #333;
            cursor: pointer;
            transition: all .18s;
            user-select: none;
            line-height: 1.3;
        }

        .intake-option:hover {
            border-color: var(--green-dark);
            background: var(--green-light);
            color: var(--green-dark);
        }

        .intake-option input[type="radio"] {
            accent-color: var(--green);
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        .intake-option:has(input:checked) {
            border-color: var(--green);
            background: #e9f5ee;
            color: var(--gold);
            font-weight: 600;
        }

        .intake-input {
            width: 100%;
            border: 1.5px solid #dee2e6;
            border-radius: 7px;
            padding: 10px 14px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
            outline: none;
            transition: border-color .18s;
            background: #f9fafb;
        }

        .intake-input:focus {
            border-color: var(--green);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(45, 106, 79, .12);
        }

        .intake-input.is-invalid {
            border-color: #dc3545;
        }

        .intake-error {
            color: #dc3545;
            font-size: 11px;
            margin-top: 4px;
            display: block;
        }

        .intake-nav {
            display: flex;
            align-items: center;
        }

        .btn-intake-back {
            background: none;
            border: 1.5px solid #dee2e6;
            border-radius: 7px;
            padding: 9px 18px;
            font-size: 13px;
            font-weight: 600;
            color: #555;
            cursor: pointer;
            flex-shrink: 0;
            margin-right: 10px;
        }

        .btn-intake-back:hover {
            border-color: #1b4332;
            color: #1b4332;
        }

        .intake-thanks-icon {
            width: 56px;
            height: 56px;
            background: #e9f5ee;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #2d6a4f;
            margin: 0 auto 8px;
            font-weight: 700;
        }

        .pill-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .pill-box {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--gold-light);
            border-radius: 8px;
            padding: 16px 18px;
        }

        .pill-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
        }
        
        
        footer {
            background: var(--green-dark);
            color: rgba(255, 255, 255, .8);
            padding: 48px 0 24px;
        }

        .social-icon {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255, 255, 255, .3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: .3s;
        }

        
        /* Responsive*/
        @media (max-width: 767px) {
            .intake-card {
                padding: 20px;
            }

            .intake-option {
                font-size: 12px;
                padding: 6px 11px;
            }
            .hero {
                padding: 48px 0 40px;
            }

            .callback-card {
                position: static;
                margin-top: 32px;
            }
                        .pill-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pill-box--wide {
                grid-column: span 2;
            }
        }

        @media (max-width: 480px) {
            .pill-grid {
                grid-template-columns: 1fr;
            }

            .pill-box--wide {
                grid-column: span 1;
            }
        }