/* Base styles */
        :root {
            --primary: #007bff;
            --secondary: #6c757d;
            --dark: #212529;
            --light: #f8f9fa;
            --border: #e9ecef;
            --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            background-color: #f8fafc;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #212529;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header styles */
        header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }
        
        .logo span {
            color: #4da6ff;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .nav-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: white;
        }
        
        .btn {
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }
        
        .btn:hover {
            background: #0069d9;
            color: white;
        }
        
        /* Legal Page Container */
        .legal-container {
            background: white;
            border-radius: 8px;
            box-shadow: var(--card-shadow);
            margin: 40px auto;
            padding: 40px;
            max-width: 900px;
        }
        
        .legal-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }
        
        .legal-header h1 {
            font-size: 2.5rem;
            color: #1b263b;
            margin-bottom: 10px;
        }
        
        .legal-header p {
            color: var(--secondary);
            font-size: 1.1rem;
        }
        
        /* Section styles */
        .section {
            margin-bottom: 30px;
        }
        
        .section h2 {
            font-size: 1.8rem;
            color: #1b263b;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            margin-top: 30px;
        }
        
        .section h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-top: 25px;
        }
        
        .section p {
            margin-bottom: 15px;
            color: #495057;
        }
        
        .section ul, .section ol {
            margin: 15px 0;
            padding-left: 30px;
        }
        
        .section li {
            margin-bottom: 10px;
        }
        
        /* Contact section */
        .contact-info {
            background: #e9f7fe;
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin-top: 30px;
            border-radius: 4px;
        }
        
        /* Footer styles */
        footer {
            background: #1b263b;
            color: rgba(255, 255, 255, 0.8);
            padding: 40px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-links a i {
            width: 20px;
            text-align: center;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .legal-container {
                padding: 25px;
                margin: 20px auto;
            }
            
            .legal-header h1 {
                font-size: 2rem;
            }
            
            .section h2 {
                font-size: 1.5rem;
            }
            
            .section h3 {
                font-size: 1.2rem;
            }
            
            .nav-links {
                display: none;
            }
        }