.policy-notice-section {
    background-color: #F6F4EE;
    padding: 30px 60px;
}

.policy-notice-text {
    color: #4B5D6B;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-link {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #1C1C1C;
}

.policy-container {
    padding: 50px 60px;
    display: flex;
    gap: 60px;
}

/* Sidebar */
.policy-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    border-top: 3px solid #BD9209;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.policy-sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar-header {
    margin-top: 24px;
    margin-bottom: 18px;
}

.sidebar-title {
    color: #1C1C1C;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    color: #617282;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background-color: #F6F4EE;
    color: #1C1C1C;
}

.sidebar-link.active {
    background-color: #F6F4EE;
    color: #1C1C1C;
}

.sidebar-arrow {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.sidebar-link:hover .sidebar-arrow,
.sidebar-link.active .sidebar-arrow {
    opacity: 1;
}

/* ========================================
   Main Content - Unified Styles
   ======================================== */

.policy-main-content {
    flex: 1;
    min-width: 0;
}

.policy-block {
    padding: 58px 0;
    border-bottom: 1px solid #DCE4E9;
}

.policy-block:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.policy-block-title {
    color: #072C47;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
}

.policy-text {
    color: #425766;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-text:last-child {
    margin-bottom: 0;
}

.highlight-text {
    font-weight: 700;
    color: #072C47;
}

.policy-link-inline {
    text-decoration: underline;
    transition: all 0.2s ease;
}

.policy-link-inline:hover {
    color: #1C1C1C;
}

/* --- Unified List Styles --- */
.policy-list {
    padding-left: 0;
    list-style: none;
}

.policy-list > li {
    color: #425766;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.policy-list > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #BD9209;
    border-radius: 50%;
}

.policy-list > li:last-child {
    margin-bottom: 28px;
}

/* Ordered List - Custom styled numbers */
.policy-list-ordered {
    counter-reset: ordered-list;
    padding-left: 0;
    list-style: none;
}

.policy-list-ordered > li {
    counter-increment: ordered-list;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #425766;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.policy-list-ordered > li::before {
    content: counter(ordered-list) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #BD9209;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.policy-list-ordered > li:last-child {
    margin-bottom: 0;
}

/* Sub-list (nested) */
.policy-list .policy-list {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.policy-list .policy-list > li {
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.policy-list .policy-list > li::before {
    width: 5px;
    height: 5px;
    top: 9px;
}

.policy-list .policy-list .policy-list {
    padding-left: 20px;
}

.policy-list .policy-list .policy-list > li {
    padding-left: 20px;
    font-size: 14px;
}

.policy-list .policy-list .policy-list > li::before {
    width: 4px;
    height: 4px;
    top: 8px;
}

.policy-sublist {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
    list-style-type: lower-alpha;
}

.policy-sublist li {
    margin-bottom: 8px;
    padding-left: 0;
}

.policy-sublist li::before {
    content: none;
}

.policy-sublist li:last-child {
    margin-bottom: 0;
}

/* --- Legal Notice Box --- */
.policy-legal-notice {
    background: #EDF3F6;
    padding: 24px 28px;
    border-radius: 12px;
    margin: 20px 0;
}

.policy-legal-notice .policy-text {
    margin-bottom: 20px;
}

.policy-legal-notice .policy-text:last-child {
    margin-bottom: 0;
}

/* --- Policy Card (Reusable Box Style) --- */
.policy-card {
    border-radius: 14px;
    background: #F6F4EE;
    padding: 34px 38px;
}

.policy-card .policy-block-title {
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-card .policy-text {
    margin-bottom: 20px;
}

.policy-card .policy-text:last-child {
    margin-bottom: 0;
}

/* Policy Card Subtitle (for sub-sections within a card) */
.policy-card-subtitle {
    color: #072C47;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    padding-top: 34px;
    padding-bottom: 17px;
    border-top: 1px solid #D9D8D2;
}

.policy-card-subtitle:first-child {
    margin-top: 0;
}

/* --- Unified Table Styles --- */
.wear-tear-table-container,
.discount-table-container {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #DCE4E9;
    overflow: hidden;
}

/* Wear & Tear Table (Light) */
.wear-tear-table {
    width: 100%;
}

.wear-tear-table tr:nth-child(odd) {
    background-color: #FFFFFF;
}

.wear-tear-table tr:nth-child(even) {
    background-color: #F8FAFB;
}

.wear-tear-table td {
    padding: 17px 18px 13px;
    color: #344C5D;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

/* Discount Table (Dark Header with Zebra Stripes) */
.discount-table {
    width: 100%;
    overflow: hidden;
}

.discount-table thead {
    background-color: #072C47;
}

.discount-table th {
    padding: 17px 18px 13px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    line-height: 1.7;
}

.discount-table tbody tr:nth-child(odd) {
    background-color: #FFFFFF;
}

.discount-table tbody tr:nth-child(even) {
    background-color: #F8FAFB;
}

.discount-table td {
    padding: 17px 18px 13px;
    color: #344C5D;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    border-bottom: 1px solid #DCE4E9;
}

.discount-table tbody tr:last-child td {
    border-bottom: none;
}
/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 768px) {
    .policy-notice-section {
        padding: 30px 20px;
    }
    .policy-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .policy-sidebar {
        display: none;
    }

    .policy-block {
        padding: 46px 0;
    }

    .policy-block-title {
        font-size: 30px;
    }

    .policy-text {
        font-size: 14px;
    }

    .policy-card {
        padding: 28px 24px;
    }

    .policy-list li {
        font-size: 14px;
    }

    .wear-tear-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .discount-table th,
    .discount-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .mobile-sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        background: #FFFFFF;
        border: 2px solid #DCE4E9;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-sidebar-toggle:hover {
        border-color: #BD9209;
        background: #F6F4EE;
    }

    /* Fixed state for mobile toggle */
    .mobile-sidebar-toggle.fixed-toggle {
        position: fixed;
        left: 0;
        right: 0;
        z-index: 50;
        background-color: #FFFFFF;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        margin: 0;
        width: 100%;
        transition: top 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .mobile-toggle-text {
        color: #072C47;
        font-size: 18px;
        font-weight: 700;
    }

    .mobile-toggle-arrow {
        color: #617282;
        transition: transform 0.3s ease;
    }

    .mobile-sidebar-toggle:hover .mobile-toggle-arrow {
        color: #072C47;
    }

    /* Mobile Sidebar Overlay */
    .mobile-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-sidebar-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Mobile Sidebar Drawer */
    .mobile-sidebar-drawer {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        max-width: 85%;
        height: 100%;
        background: #FFFFFF;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-sidebar-drawer.active {
        left: 0;
    }

    .mobile-sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid #DCE4E9;
    }

    .mobile-sidebar-title {
        color: #1C1C1C;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .mobile-sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        cursor: pointer;
        color: #617282;
        transition: color 0.2s ease;
    }

    .mobile-sidebar-close:hover {
        color: #1C1C1C;
    }

    .mobile-sidebar-nav {
        display: flex;
        flex-direction: column;
        padding: 16px 0;
    }

    .mobile-sidebar-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        color: #617282;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: all 0.2s ease;
    }

    .mobile-sidebar-link:hover {
        background-color: #F6F4EE;
        color: #1C1C1C;
    }

    .mobile-sidebar-link.active {
        background-color: #F6F4EE;
        color: #1C1C1C;
    }

    .mobile-sidebar-arrow {
        flex-shrink: 0;
        opacity: 0.5;
        transition: opacity 0.2s ease;
    }

    .mobile-sidebar-link:hover .mobile-sidebar-arrow,
    .mobile-sidebar-link.active .mobile-sidebar-arrow {
        opacity: 1;
    }
}

@media (min-width: 769px) {
    .mobile-sidebar-toggle,
    .mobile-sidebar-overlay,
    .mobile-sidebar-drawer {
        display: none !important;
    }
}