body{
    overflow-x: unset;
}

/* Policy Banner Section */
.policy-banner-section {
    background: linear-gradient(135deg, rgba(29, 45, 94, 0.95) 0%, rgba(29, 45, 94, 0.85) 100%);
    padding: 130px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.policy-banner-container {
    position: relative;
    z-index: 1;
}

.policy-banner-content {
    margin: 0 auto;
    text-align: center;
}

.policy-breadcrumb ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.policy-breadcrumb ul li {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--family-font-secondary);
    position: relative;
    padding-right: 20px;
}

.policy-breadcrumb ul li:last-child {
    color: rgba(255, 255, 255, 0.6);
    padding-right: 0;
}

.policy-breadcrumb ul li:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.policy-breadcrumb ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.policy-breadcrumb ul li a:hover {
    color: #fff;
}

.policy-banner-content h1 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.policy-banner-content>p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.policy-update-date {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    margin-top: 20px;
}

.policy-update-date span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--family-font-secondary);
}

/* Policy Content Section */
.policy-content-section {
    padding: 80px 0;
    background-color: #f8fafc;
}



.policy-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Table of Contents */
.policy-toc {
    width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.policy-toc h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.policy-toc ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-toc ul li {
    list-style: none;
}

.policy-toc ul li a {
    font-size: 15px;
    color: #666;
    font-family: var(--family-font-secondary);
    line-height: 1.6;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    position: relative;
    padding-left: 20px;
}

.policy-toc ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-toc ul li a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.policy-toc ul li a:hover::before,
.policy-toc ul li a.active::before {
    opacity: 1;
}

.policy-toc ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
    padding-left: 25px;
}

/* Main Content */

.total-title{
    font-size: 18px;
    font-family: var(--family-font-secondary);
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 2;

}
.policy-main-content {
    flex: 1;
    background-color: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.policy-section {
    margin-bottom: 50px;
    scroll-margin-top: 120px;
}

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

.policy-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.policy-text {
    font-family: var(--family-font-secondary);
}

.policy-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.policy-text ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    list-style: none;
}

.policy-text ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    top: 2px;
}

.policy-text ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-contact-info {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
}

.policy-contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a5568;
}

.policy-contact-info p:last-child {
    margin-bottom: 0;
}

.policy-contact-info p strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.policy-contact-info a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.policy-contact-info a:hover {
    opacity: 0.8;
}

@media screen and (max-width:1200px) {
    .alt-logo-menu-mobile .navi-trigger,
    .alt-logo-menu-mobile .portfolio-icon {
        fill: #fff !important;
    }

    body.show_mobile_menu .navi-trigger-out .navi-trigger {
        fill: var(--primary-color) !important;
    }

    .nav-logo img {
        filter: brightness(0) invert(1);
    }

    body.show_mobile_menu .nav-logo img {
        filter: none;
    }

    .header.scroll .navi-trigger-out .navi-trigger {
        fill: var(--primary-color) !important;
    }

    .header.scroll .nav-logo img {
        filter: none;
    }
    .policy-banner-section{
        padding: 90px 0 40px 0;
    }
    .policy-content-section{
        padding: 40px 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .policy-content {
        flex-direction: column;
        gap: 30px;
    }

    .policy-toc {
        width: 100%;
        position: relative;
        top: 0;
        max-height: none;
    }

    .policy-main-content {
        padding: 40px 30px;
    }

    .policy-banner-content h1 {
        font-size: 36px;
    }
    .policy-toc{
        display: none;
    }
}

@media (max-width: 992px) {

    .policy-banner-section {
        padding: 97px 0 40px 0;
    }

    .policy-banner-content h1 {
        font-size: 28px;
    }

    .policy-banner-content>p {
        font-size: 16px;
    }

    .policy-content-section {
        padding: 50px 0;
    }

    .policy-main-content {
        padding: 30px 20px;
    }

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

    .policy-text p,
    .policy-text ul li {
        font-size: 15px;
    }

    .policy-text ul li{
        margin-bottom: 10px;
    }

    .policy-contact-info {
        padding: 20px;
    }

    .total-title{
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .policy-contact-info p strong{
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .policy-banner-content h1 {
        font-size: 24px;
    }

    .policy-toc {
        padding: 20px;
    }

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

    .policy-section {
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 20px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar for TOC */
.policy-toc::-webkit-scrollbar {
    width: 6px;
}

.policy-toc::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.policy-toc::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.policy-toc::-webkit-scrollbar-thumb:hover {
    background: #1a2542;
}