* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        
        :root {
            --primary: #D32F2F;
            --secondary: #455A64;
            --light: #FFFFFF;
            --dark: #212121;
            --accent: #FFC107;
            --accent-dark: #2E7D32;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
            border-bottom: 4px solid var(--primary);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--light);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Roboto Condensed', sans-serif;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            text-transform: uppercase;
            font-family: 'Roboto Condensed', sans-serif;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Terms Section */
        .terms {
            padding: 120px 0 80px;
            background-color: var(--dark);
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent);
            text-transform: uppercase;
            font-family: 'Roboto Condensed', sans-serif;
            position: relative;
            display: inline-block;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .terms-content {
            max-width: 900px;
            margin: 0 auto;
            background-color: rgba(69, 90, 100, 0.3);
            border: 2px solid var(--secondary);
            padding: 40px;
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section:last-child {
            margin-bottom: 0;
        }
        
        .terms-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent);
            text-transform: uppercase;
            font-family: 'Roboto Condensed', sans-serif;
            position: relative;
            display: inline-block;
        }
        
        .terms-section h2::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
            bottom: -8px;
            left: 0;
        }
        
        .terms-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--light);
            text-transform: uppercase;
            font-family: 'Roboto Condensed', sans-serif;
        }
        
        .terms-section p {
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .terms-section li {
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            padding: 70px 0 30px;
            border-top: 4px solid var(--primary);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
            text-transform: uppercase;
            font-family: 'Roboto Condensed', sans-serif;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
            bottom: -8px;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .contact-info p {
            color: var(--light);
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 2px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            color: var(--light);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--secondary);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                border-top: 3px solid var(--primary);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .terms-content {
                padding: 25px;
            }
        }

