 body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-navy: #001e52;
            --primary-dark: #001338;
            --secondary-navy: #002a6b;
            --accent-orange: #fb572d;
            --accent-hover: #e64a23;
            --text-dark: #1a1a1a;
            --text-gray: #666666;
            --text-light: #999999;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --border-color: #e0e0e0;
            --success: #22c55e;
            --warning: #f59e0b;
            --info: #3b82f6;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
        }
        
        /* Header */
        .header {
            background: var(--primary-navy);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .brand-logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .brand-logo i {
            color: var(--accent-orange);
            font-size: 32px;
        }
        
        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent-orange);
        }
        
        .contact-btn {
            background: var(--accent-orange);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 8px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-size: 14px;
        }
        
        .contact-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 87, 45, 0.3);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
            color: var(--white);
            padding: 80px 40px 60px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
        }
        
        .hero p {
            font-size: 18px;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        /* Legal Layout */
        .legal-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
            align-items: start;
        }
        
        /* Sidebar Navigation */
        .legal-sidebar {
            position: relative;
        }
        
        .sidebar-sticky {
            position: sticky;
            top: 90px;
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .sidebar-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--bg-light);
        }
        
        .sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .legal-tab {
            background: transparent;
            border: none;
            border-left: 3px solid transparent;
            padding: 12px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--text-gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            text-align: left;
        }
        
        .legal-tab:hover {
            background: var(--bg-light);
            color: var(--primary-navy);
            border-left-color: var(--accent-orange);
        }
        
        .legal-tab.active {
            background: rgba(251, 87, 45, 0.1);
            color: var(--accent-orange);
            border-left-color: var(--accent-orange);
        }
        
        .legal-tab i {
            font-size: 18px;
            width: 20px;
            text-align: center;
        }
        
        .legal-tab span {
            flex: 1;
        }
        
        .legal-main {
            min-width: 0;
        }
        
        /* Legal Content */
        .legal-content {
            display: none;
            background: var(--white);
            border-radius: 20px;
            padding: 60px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .legal-content.active {
            display: block;
        }
        
        .legal-header {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 3px solid var(--bg-light);
        }
        
        .legal-title {
            font-size: 38px;
            font-weight: 800;
            color: var(--primary-navy);
            margin-bottom: 15px;
        }
        
        .legal-updated {
            color: var(--text-gray);
            font-size: 14px;
            font-weight: 600;
        }
        
        .legal-section {
            margin-bottom: 45px;
        }
        
        .legal-section h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .legal-section h2 i {
            color: var(--accent-orange);
            font-size: 24px;
        }
        
        .legal-section h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 15px;
            margin-top: 25px;
        }
        
        .legal-section p {
            color: var(--text-gray);
            line-height: 1.9;
            margin-bottom: 15px;
            font-size: 15px;
        }
        
        .legal-section ul,
        .legal-section ol {
            color: var(--text-gray);
            line-height: 2;
            margin-left: 25px;
            margin-bottom: 20px;
        }
        
        .legal-section li {
            margin-bottom: 10px;
            font-size: 15px;
        }
        
        .legal-section strong {
            color: var(--primary-navy);
            font-weight: 600;
        }
        
        .info-box {
            background: #e8f4fd;
            border-left: 4px solid var(--info);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .info-box h4 {
            color: var(--info);
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .info-box p {
            color: var(--text-dark);
            margin-bottom: 0;
        }
        
        .warning-box {
            background: #fff3e6;
            border-left: 4px solid var(--warning);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .warning-box h4 {
            color: var(--warning);
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .warning-box p {
            color: var(--text-dark);
            margin-bottom: 0;
        }
        
        .success-box {
            background: #e8f8f0;
            border-left: 4px solid var(--success);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .success-box h4 {
            color: var(--success);
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .success-box p {
            color: var(--text-dark);
            margin-bottom: 0;
        }
        
        .table-wrapper {
            overflow-x: auto;
            margin: 25px 0;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
        }
        
        thead th {
            background: var(--primary-navy);
            color: var(--white);
            padding: 18px 15px;
            text-align: left;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        tbody tr {
            border-bottom: 1px solid var(--border-color);
        }
        
        tbody tr:hover {
            background: var(--bg-light);
        }
        
        tbody td {
            padding: 16px 15px;
            color: var(--text-gray);
            font-size: 14px;
        }
        
        tbody td:first-child {
            font-weight: 600;
            color: var(--primary-navy);
        }
        
        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            margin-top: 50px;
            color: var(--white);
        }
        
        .contact-cta h3 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .contact-cta p {
            font-size: 16px;
            opacity: 0.95;
            margin-bottom: 25px;
            color: var(--white);
        }
        
        .contact-cta .btn-primary {
            background: var(--accent-orange);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 10px;
            border: none;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-cta .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 87, 45, 0.3);
        }
        
        /* Footer */
        .footer {
            background: var(--primary-navy);
            color: var(--white);
            padding: 60px 40px 30px;
            margin-top: 80px;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-section h4 i {
            color: var(--accent-orange);
        }
        
        .footer-section p {
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--accent-orange);
            transform: translateX(5px);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.8;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .legal-layout {
                grid-template-columns: 1fr;
            }
            
            .sidebar-sticky {
                position: static;
            }
            
            .sidebar-nav {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .legal-content {
                padding: 30px 25px;
            }
            
            .legal-title {
                font-size: 28px;
            }
            
            .legal-section h2 {
                font-size: 22px;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .header-container {
                padding: 0 20px;
            }
            
            .nav-links {
                display: none;
            }
            
            .sidebar-nav {
                grid-template-columns: 1fr;
            }
            
            .legal-tab {
                font-size: 13px;
                padding: 10px 14px;
            }
        }