html,
    body {
        overflow-x: clip !important;
    }

    /* ===== DISCLAIMER PAGE ===== */
    .dp-hero {
        position: relative;
        padding: 80px 0 70px;
        background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
        overflow: hidden;
        text-align: center;
    }

    .dp-hero-inner {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dp-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(139, 26, 43, 0.18);
        border: 1px solid rgba(139, 26, 43, 0.35);
        color: #e87a8a;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 50px;
        margin-bottom: 16px;
    }

    .dp-hero h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 12px;
    }

    .dp-hero p {
        font-size: .95rem;
        color: rgba(255, 255, 255, .6);
        margin: 0;
    }

    .dp-hero-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .dp-hero-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .82rem;
        color: rgba(255, 255, 255, .5);
    }

    .dp-hero-meta i {
        color: #8B1A2B;
        font-size: .78rem;
    }

    /* Illustration strip */
    .dp-illus-strip {
        background: #fff;
        border-bottom: 1px solid #efefef;
        padding: 18px 0;
    }

    .dp-illus-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .dp-illus-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .82rem;
        color: #555;
        font-weight: 500;
    }

    .dp-illus-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #fff5f7;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8B1A2B;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    /* Layout */
    .dp-body {
        background: #f7f8fc;
        padding: 48px 0 60px;
    }

    .dp-layout {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 28px;
        align-items: start;
    }

    /* Sidebar TOC */
    .dp-toc {
        background: #fff;
        border-radius: 16px;
        border: 1px solid #efefef;
        padding: 22px;
        position: sticky;
        top: 10px;
    }

    .dp-toc-title {
        font-family: 'Montserrat', sans-serif;
        font-size: .78rem;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #aaa;
        margin-bottom: 14px;
    }

    .dp-toc-item {
        display: block;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: .82rem;
        color: #555;
        text-decoration: none;
        transition: all .2s;
        margin-bottom: 2px;
        border-left: 2px solid transparent;
    }

    .dp-toc-item:hover,
    .dp-toc-item.active {
        background: #fff5f7;
        color: #8B1A2B;
        border-left-color: #8B1A2B;
    }

    .dp-toc-divider {
        height: 1px;
        background: #f0f0f0;
        margin: 10px 0;
    }

    /* Content */
    .dp-content-card {
        background: #fff;
        border-radius: 16px;
        border: 1px solid #efefef;
        padding: 40px 44px;
    }

    .dp-intro {
        background: linear-gradient(135deg, #fff5f7, #fef2f4);
        border: 1px solid #fdd;
        border-radius: 14px;
        padding: 22px 26px;
        margin-bottom: 36px;
    }

    .dp-intro h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        font-weight: 800;
        color: #8B1A2B;
        margin-bottom: 8px;
    }

    .dp-intro p {
        font-size: .88rem;
        color: #555;
        line-height: 1.8;
        margin: 0;
    }

    .dp-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid #f0f0f0;
    }

    .dp-section:last-child {
        border: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .dp-section h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.15rem;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dp-section h2 i {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: #fff5f7;
        color: #8B1A2B;
        font-size: .85rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .dp-section p {
        font-size: .9rem;
        color: #555;
        line-height: 1.8;
        margin-bottom: 12px;
    }

    .dp-section p:last-child {
        margin-bottom: 0;
    }

    .dp-highlight {
        background: #fff5f7;
        border-left: 3px solid #8B1A2B;
        border-radius: 0 10px 10px 0;
        padding: 14px 18px;
        margin: 16px 0;
        font-size: .88rem;
        color: #555;
        line-height: 1.7;
    }

    .dp-highlight i {
        color: #8B1A2B;
        margin-right: 6px;
    }

    .dp-warning-box {
        background: #fffbeb;
        border: 1px solid #fde68a;
        border-radius: 12px;
        padding: 16px 20px;
        margin: 16px 0;
        font-size: .88rem;
        color: #92400e;
        line-height: 1.7;
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .dp-warning-box i {
        color: #d97706;
        font-size: 1rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .dp-contact-card {
        background: linear-gradient(135deg, #1a1a2e, #0f3460);
        border-radius: 16px;
        padding: 32px;
        text-align: center;
        margin-top: 36px;
    }

    .dp-contact-card h4 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.1rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 8px;
    }

    .dp-contact-card p {
        font-size: .88rem;
        color: rgba(255, 255, 255, .6);
        margin-bottom: 20px;
    }

    .dp-contact-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 26px;
        background: #8B1A2B;
        color: #fff;
        border-radius: 10px;
        font-size: .88rem;
        font-weight: 700;
        text-decoration: none;
        transition: opacity .2s;
    }

    .dp-contact-btn:hover {
        opacity: .88;
        color: #fff;
    }

    @media(max-width:768px) {
        .dp-layout {
            grid-template-columns: 1fr;
        }

        .dp-toc {
            display: none;
        }

        .dp-content-card {
            padding: 24px 20px;
        }

        .dp-illus-inner {
            gap: 20px;
        }
    }
