.cgv-page {
    background: #0a0a0a !important;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

/* Fixed header for CGV page */
.cgv-page header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000000 !important;
}

/* Normalize header button on CGV pages */
.cgv-page .header-btn {
    font-size: 14px !important;
    font-size: 0.875rem !important;
    padding: 12px 32px !important;
    min-width: 160px;
    width: auto !important;
    display: inline-block !important;
    line-height: 1.2 !important;
    font-family: Inter-Medium !important;
    letter-spacing: normal !important;
}

/* Reset font inheritance on CGV pages */
.cgv-page header,
.cgv-page .header-wrapper,
.cgv-page .header-menu {
    font-family: 'Rethink Sans', sans-serif !important;
    line-height: normal !important;
}

.cgv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 24px 80px;
}

.cgv-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
}

/* Sidebar Navigation - RIGHT SIDE */
.cgv-sidebar {
    position: sticky;
    top: 120px;
    width: 260px;
    flex-shrink: 0;
    order: 2;
    display: none;
}

.cgv-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cgv-nav-link {
    padding: 8px 12px;
    color: #888888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.15s ease;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.cgv-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.cgv-nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 500;
}

/* Main Content - LEFT SIDE */
.cgv-content {
    flex: 1;
    max-width: 720px;
    order: 1;
    margin-left: 70px;
}

.cgv-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.cgv-intro {
    font-size: 13px;
    color: #888888;
    margin-bottom: 56px;
    padding-bottom: 0;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.cgv-section {
    margin-bottom: 64px;
    scroll-margin-top: 120px;
}

.cgv-section h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.cgv-section h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.cgv-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #c9cbcf;
    margin-bottom: 20px;
    font-weight: 400;
}

.cgv-section ul {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.cgv-section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #c9cbcf;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.cgv-section ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #888888;
    font-weight: 400;
}

.cgv-section strong,
.cgv-section b {
    font-weight: 600;
    color: #ffffff;
}

/* Footer section */
.cgv-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cgv-footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 6px;
}

/* Tablet and Desktop */
@media (min-width: 992px) {
    .cgv-sidebar {
        display: block;
    }

    .cgv-container {
        padding: 140px 40px 100px;
    }

    .cgv-wrapper {
        gap: 80px;
    }

    .cgv-title {
        font-size: 40px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .cgv-container {
        padding: 120px 60px 102px;
    }

    .cgv-sidebar {
        width: 300px;
    }

    .cgv-wrapper {
        gap: 100px;
    }
}

/* Mobile improvements */
@media (max-width: 991px) {
    .cgv-container {
        padding: 100px 20px 60px;
    }

    .cgv-title {
        font-size: 36px;
    }

    .cgv-section h2 {
        font-size: 28px;
    }

    .cgv-section h3 {
        font-size: 20px;
    }
}

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

::selection {
    background: #FF6B35;
    color: #ffffff;
}

::-moz-selection {
    background: #FF6B35;
    color: #ffffff;
}

/* Links */
.cgv-section a {
    color: #6B9CFF;
    text-decoration: none;
    transition: color 0.15s ease;
}

.cgv-section a:hover {
    color: #8FB4FF;
}
