:root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --background-color: #1f2937;
            --text-color: #ecf0f1;
            --card-background: #374151;
            --highlight-color: #3498db;
            --font-family: 'Arial', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: var(--highlight-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(31, 41, 55, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 2px solid var(--secondary-color);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            font-weight: bold;
            font-size: 1rem;
            text-transform: uppercase;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(31, 41, 55, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease-in-out;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .burger {
                display: flex;
            }
        }
        
        main {
            padding-top: 120px;
            padding-bottom: 4rem;
        }

        .content-section {
            padding: 4rem 0;
            background-color: var(--card-background);
            border-radius: 10px;
            margin-top: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        h1, h2, h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        h1 {
            text-align: center;
            font-size: 2.5rem;
        }

        .content-section h2 {
            margin-top: 2rem;
            border-bottom: 1px solid var(--primary-color);
            padding-bottom: 0.5rem;
        }

        .content-section ul, .content-section ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        
        .content-section li {
            margin-bottom: 0.5rem;
        }
        
        .disclaimer {
            background-color: var(--primary-color);
            padding: 1rem 0;
            text-align: center;
            font-size: 0.8rem;
            color: #bdc3c7;
        }

        footer {
            background-color: var(--primary-color);
            padding: 2rem 0;
            border-top: 2px solid var(--secondary-color);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo, .footer-nav, .footer-contact {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-logo p {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #bdc3c7;
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 0.5rem;
        }
        
        .footer-nav a {
            color: #ecf0f1;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--secondary-color);
        }
        
        .footer-contact p {
            margin-bottom: 0.5rem;
        }
        
        .footer-contact .contact-info {
            display: block;
            color: #bdc3c7;
            margin-top: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

