:root {
            --primary-color: #00e0b3;
            --secondary-color: #ff527c;
            --accent-color: #3b5998;
            --background-dark: #121212;
            --background-light: #f5f5f5;
            --text-light: #e0e0e0;
            --text-dark: #333;
            --card-bg: #212121;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: var(--background-dark);
            color: var(--text-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 18, 18, 0.95);
            z-index: 1000;
            padding: 20px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2em;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .main-content {
            padding-top: 120px;
            padding-bottom: 50px;
        }

        h1 {
            font-size: 3em;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 40px;
        }

        h2 {
            font-size: 2em;
            color: var(--secondary-color);
            margin-top: 40px;
            margin-bottom: 20px;
        }
        
        p, ul {
            margin-bottom: 20px;
        }
        
        ul {
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 10px;
        }

        footer {
            background: var(--background-dark);
            color: var(--text-light);
            padding: 40px 0;
            text-align: center;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 30px;
            text-align: left;
        }

        .footer-logo, .footer-links, .footer-contact {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo {
            text-align: center;
        }

        .footer-logo h4 {
            font-size: 2em;
            font-weight: bold;
            color: var(--primary-color);
        }

        .footer-links h4, .footer-contact h4 {
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: var(--text-light);
            text-decoration: none;
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9em;
        }
        
        .disclaimer {
            background: #0d0d0d;
            padding: 20px;
            text-align: center;
            font-size: 0.8em;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

