 :root {
            --primary: #DF5D83;
            --secondary: #FAF7F2;
            --dark: #3D2D2D;
        }

        html,
        body {
            scroll-behavior: smooth;
            overflow-x: inherit !important;
        }

        body {
            /* background: var(--secondary); */
            color: #555;
            line-height: 1.8;
        }

        .hero {
            padding: 120px 0 80px;
            text-align: center;
        }

        .badge-custom {
            display: inline-block;
            padding: 10px 20px;
            background: rgba(223, 93, 131, .15);
            color: var(--primary);
            border-radius: 50px;
            font-weight: 600;
        }

        .hero h1 {
            font-size: clamp(42px, 6vw, 72px);
            color: var(--dark);
            margin: 20px 0;
        }

        .hero p {
            max-width: 700px;
            margin: auto;
        }

        /* Sidebar Styling */
        .sidebar {
            position: sticky;
            top: 100px;
            background: #fff;
            border-radius: 24px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
        }

        /* Sidebar Custom Accordion Styling */
        .sidebar-accordion {
            background: transparent;
        }

        .sidebar-accordion .accordion-item {
            border: none;
            background: transparent;
            margin-bottom: 8px;
        }

        .sidebar-accordion .accordion-button {
            padding: 0;
            background: transparent;
            color: #555;
            box-shadow: none;
            font-size: 0.95rem;
            font-weight: 600;
            text-align: left;
            transition: .3s;
        }

        .sidebar-accordion .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: transparent;
        }

        .sidebar-accordion .accordion-button:hover {
            color: var(--primary);
        }

        .sidebar-accordion .accordion-button::after {
            width: 1.2rem;
            height: 1.2rem;
            background-size: 1.2rem;
            margin-left: auto;
        }

        .sidebar-accordion .accordion-body {
            padding: 10px 0 5px 12px;
            border-left: 2px solid rgba(223, 93, 131, 0.2);
            margin-left: 4px;
        }

        .sidebar-accordion a {
            display: block;
            text-decoration: none;
            color: #666;
            margin-bottom: 10px;
            transition: .3s;
            font-size: 0.88rem;
        }

        .sidebar-accordion a:last-child {
            margin-bottom: 0;
        }

        .sidebar-accordion a:hover,
        .sidebar-accordion a.active {
            color: var(--primary);
            font-weight: 500;
        }

        /* Content Cards */
        .policy-card {
            background: #fff;
            border-radius: 30px;
            padding: 40px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
        }

        .policy-number {
            width: 60px;
            height: 60px;
            background: #FDEBF1;
            color: var(--primary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .policy-card h2 {
            color: var(--dark);
            margin-bottom: 20px;
        }

        .policy-card h3 {
            font-size: 1.25rem;
            color: var(--dark);
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .policy-card ul {
            padding-left: 20px;
        }

        .policy-card li {
            margin-bottom: 10px;
        }

        .notice {
            background: #FFF5F5;
            border-left: 5px solid var(--primary);
            padding: 20px;
            border-radius: 12px;
        }

        .section-divider {
            margin: 60px 0 40px;
            border-top: 2px dashed #e0e0e0;
            text-align: center;
        }

        .section-divider span {
            background: var(--secondary);
            padding: 0 20px;
            position: relative;
            top: -15px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .resources-hero {
            padding-top: 121px;
            padding-bottom: 48px;
            text-align: center;
            /* background: linear-gradient(180deg, #FFFFFF 0%, #FAF6F2 100%); */
        }

        @media(max-width:991px) {
            .sidebar {
                position: relative;
                top: 0;
                margin-bottom: 30px;
            }

            .hero {
                padding: 80px 0 50px;
            }

            .policy-card {
                padding: 25px;
            }
        }

.policy-hero {
    background: #F7F0E6;
}

.badge-policy {
    background: #DF5D83;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
}

.policy-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #eee;
}

.policy-sidebar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.policy-sidebar li {
    margin-bottom: 12px;
}

.policy-sidebar a {
    text-decoration: none;
    color: #3E2723;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 20px !important;
    overflow: hidden;
}

.accordion-button {
    background: #fff;
    font-weight: 600;
    padding: 22px;
}

.accordion-button:not(.collapsed) {
    background: #DF5D83;
    color: #fff;
}

.accordion-body {
    padding: 25px;
    line-height: 1.8;
}

