* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-color: #00A8CC;
            --secondary-color: #007EA7;
            --tertiary-color: #003459;
            --background-color: #F8F9FA;
            --text-color: #212529;
            --card-bg: #FFFFFF;
            --header-height: 80px;
        }
        
        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            padding-top: var(--header-height);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background-color: var(--card-bg);
            color: var(--text-color);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 300;
            letter-spacing: 2px;
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -3px;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
        }
        
        .burger span {
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        /* Terms Content */
        .terms-content {
            padding: 50px 0;
            background-color: var(--background-color);
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-title h1 {
            font-size: 36px;
            font-weight: 300;
            margin-bottom: 15px;
            color: var(--tertiary-color);
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .terms-section {
            margin-bottom: 40px;
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .terms-section h2 {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 20px;
            color: var(--tertiary-color);
        }
        
        .terms-section h3 {
            font-size: 20px;
            font-weight: 500;
            margin: 25px 0 15px;
            color: var(--secondary-color);
        }
        
        .terms-section p {
            margin-bottom: 20px;
            color: #6c757d;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .terms-section li {
            margin-bottom: 12px;
            color: #6c757d;
        }
        
        /* Footer */
        footer {
            background-color: var(--tertiary-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }
            
            nav {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background-color: var(--card-bg);
                transform: translateY(-100%);
                transition: transform 0.3s ease;
                z-index: 999;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .page-title h1 {
                font-size: 28px;
            }
            
            .terms-section h2 {
                font-size: 20px;
            }
            
            .terms-section h3 {
                font-size: 18px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

