* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
            width: 100%;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            line-height: 1.6;
        }

        /* ================= LEGAL PAGE STYLES ================= */


        /* Tab Navigation */
        .tab-navigation {
            background: #FFFFFF;
            box-shadow: 0 4px 20px rgba(11, 44, 107, 0.1);
            position: sticky;
            top: 75px;
            z-index: 100;
            padding: 0 5%;
        }

        .tab-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 0;
            overflow-x: auto;
        }

        .tab-button {
            flex: 1;
            min-width: max-content;
            padding: 20px 30px;
            background: transparent;
            border: none;
            color: #4B5563;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            position: relative;
        }

        .tab-button:hover {
            color: #1E5FD8;
            background: rgba(30, 95, 216, 0.05);
        }

        .tab-button.active {
            color: #0B2C6B;
            border-bottom: 3px solid #1E5FD8;
            background: linear-gradient(180deg, rgba(165, 201, 255, 0.1) 0%, transparent 100%);
        }

        .tab-button::before {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #A5C9FF, #1E5FD8);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .tab-button.active::before {
            transform: scaleX(1);
        }

        /* Content Sections */
        .legal-content {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 5%;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Content Cards */
        .content-card {
            background: #FFFFFF;
            border-radius: 16px;
            padding: clamp(30px, 5vw, 50px);
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(11, 44, 107, 0.08);
            transition: all 0.3s ease;
        }

        .content-card:hover {
            box-shadow: 0 12px 35px rgba(11, 44, 107, 0.12);
            transform: translateY(-3px);
        }

        .content-card h2 {
            color: #0B2C6B;
            font-size: clamp(24px, 3vw, 32px);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #1E5FD8;
            display: inline-block;
        }

        .section-title {
            color: #1E5FD8;
            font-size: clamp(18px, 2.5vw, 22px);
            font-weight: 600;
            margin-top: 30px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title::before {
            content: '▸';
            color: #6FA8FF;
            font-size: 1.2em;
        }

        .content-card p {
            color: #6B7280;
            font-size: clamp(15px, 1.8vw, 17px);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .content-card ul {
            list-style: none;
            margin: 15px 0;
            padding-left: 0;
        }

        .content-card ul li {
            color: #4B5563;
            font-size: clamp(15px, 1.8vw, 17px);
            line-height: 1.8;
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
        }

        .content-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #FFFFFF;
            background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            top: 3px;
        }

        /* Important Notice Box */
        .notice-box {
            background: linear-gradient(135deg, rgba(165, 201, 255, 0.15) 0%, rgba(111, 168, 255, 0.1) 100%);
            border-left: 4px solid #1E5FD8;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 25px 0;
        }

        .notice-box strong {
            color: #0B2C6B;
            font-size: 18px;
        }

        .notice-box p {
            margin-top: 10px;
            color: #2D3748;
        }

        /* Warning Box for Refund Policy */
        .warning-box {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.1) 100%);
            border-left: 4px solid #FF9800;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 25px 0;
        }

        .warning-box strong {
            color: #F57C00;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .warning-box strong::before {
            content: '⚠️';
            font-size: 20px;
        }

        .warning-box p {
            margin-top: 10px;
            color: #5D4037;
        }

        /* Contact Box */
        .contact-box {
            background: linear-gradient(135deg, #0B2C6B 0%, #1E5FD8 100%);
            color: #FFFFFF;
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            margin-top: 40px;
        }

        .contact-box h3 {
            font-size: clamp(20px, 2.5vw, 24px);
            margin-bottom: 15px;
        }

        .contact-box a {
            color: #A5C9FF;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .contact-box a:hover {
            color: #FFFFFF;
            text-decoration: underline;
        }

        /* Last Updated */
        .last-updated {
            text-align: center;
            color: #6B7280;
            font-size: 14px;
            margin-top: 30px;
            padding: 20px;
            background: rgba(11, 44, 107, 0.05);
            border-radius: 8px;
        }

        /* Key Points Grid */
        .key-points-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .key-point-card {
            background: linear-gradient(135deg, rgba(165, 201, 255, 0.1) 0%, rgba(111, 168, 255, 0.05) 100%);
            border: 2px solid rgba(30, 95, 216, 0.2);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .key-point-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(11, 44, 107, 0.1);
            border-color: #1E5FD8;
        }

        .key-point-card h4 {
            color: #0B2C6B;
            font-size: clamp(16px, 2vw, 18px);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .key-point-card h4::before {
            content: '●';
            color: #1E5FD8;
            font-size: 1.2em;
        }

        .key-point-card p {
            color: #4B5563;
            font-size: clamp(14px, 1.6vw, 16px);
            line-height: 1.7;
        }

        /* Assurance Cards */
        .assurance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .assurance-card {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
            border: 2px solid rgba(165, 201, 255, 0.3);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .assurance-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(165, 201, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .assurance-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(11, 44, 107, 0.15);
            border-color: #1E5FD8;
        }

        .assurance-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(111, 168, 255, 0.3);
        }

        .assurance-card h4 {
            color: #0B2C6B;
            font-size: clamp(18px, 2.2vw, 20px);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .assurance-card p {
            color: #4B5563;
            font-size: clamp(14px, 1.6vw, 16px);
            line-height: 1.8;
        }

        /* Success Badge */
        .success-badge {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(139, 195, 74, 0.1));
            border-left: 4px solid #4CAF50;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 25px 0;
        }

        .success-badge strong {
            color: #2E7D32;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .success-badge strong::before {
            content: '✓';
            background: #4CAF50;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }

        .success-badge p {
            margin-top: 10px;
            color: #1B5E20;
        }

        @media(max-width: 900px) {
            
            .tab-navigation {
                top: 75px;
            }

            .tab-button {
                padding: 16px 20px;
                font-size: 14px;
            }
        }

        @media(max-width: 480px) {
            .logo img {
                height: 40px;
            }

            .legal-hero {
                padding: 100px 5% 40px;
            }

            .tab-container {
                gap: 0;
            }

            .tab-button {
                padding: 14px 16px;
                font-size: 13px;
            }

            .content-card {
                padding: 25px 20px;
            }

            .key-points-grid {
                grid-template-columns: 1fr;
            }

            .assurance-grid {
                grid-template-columns: 1fr;
            }
        }