.policy-sidebar {
    position: sticky;
    top: 24px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.policy-sidebar::-webkit-scrollbar {
    width: 6px;
}

.policy-sidebar::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 999px;
}

.sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--my-secondary);
}

.policy-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #eef2f7;
    background: transparent;
}

.policy-accordion .accordion-button {
    background: transparent;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    box-shadow: none;
}

.policy-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--my-primary);
}

.policy-accordion .accordion-button:hover {
    color: var(--my-primary);
}

.policy-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.policy-accordion .accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 14px;
}

.policy-accordion .accordion-body {
    padding: 0 0 16px;
}

.policy-links li + li {
    margin-top: 10px;
}

.policy-links a {
    display: block;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.policy-links a:hover,
.policy-links a.active {
    background: var(--my-primary-100);
    color: var(--my-primary);
    font-weight: 600;
}

.policy-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.policy-badge {
    font-size: 12px;
    padding: 8px 14px;
    background-color: var(--my-primary);
    color: #fff;
}

.policy-main-title {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--my-secondary);
}

.policy-description {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--my-secondary);
    margin-bottom: 0;
}

.policy-content .card {
    overflow: hidden;
}

.policy-box {
    border: 1px solid #f1f1f1 !important;
    transition: all 0.25s ease;
}

.policy-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(14, 7, 89, 0.08) !important;
    border-color: rgba(255, 102, 56, 0.15) !important;
}

.policy-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 18px;
}

.policy-box p,
.policy-box li {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

.policy-box ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.policy-box li + li {
    margin-top: 10px;
}

.policy-box a {
    color: var(--my-primary);
    text-decoration: none;
}

.policy-box a:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .policy-sidebar {
        position: relative;
        top: 0;
        max-height: unset;
        overflow: visible;
    }

    .policy-main-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .policy-main-title {
        font-size: 24px;
    }

    .policy-description {
        font-size: 15px;
    }

    .policy-box h3 {
        font-size: 18px;
    }

    .policy-box .card-body,
    .policy-hero .card-body,
    .policy-sidebar .card-body {
        padding: 20px !important;
    }

    .sidebar-title {
        font-size: 20px;
    }

    .policy-accordion .accordion-button {
        font-size: 14px;
    }
}