
        :root {
            --primary-color: #FFD700;
            --bg-dark: #0a0a0a;
            --text-light: #ffffff;
            --text-gray: #cccccc;
            --accent-gold: #eabf11;
            --card-bg: #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            background-color: var(--card-bg);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Article Styles */
        article {
            padding: 2rem 0;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--accent-gold);
        }

        h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem;
            color: var(--text-light);
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-gray);
        }

        a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        /* FAQ Accordion */
        .faq-container {
            margin: 2rem 0;
        }

        .faq-item {
            background-color: var(--card-bg);
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            background-color: var(--card-bg);
            color: var(--text-light);
            padding: 1rem;
            border: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .faq-question:hover {
            background-color: #2a2a2a;
        }

        .faq-answer {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.active {
            max-height: 200px;
            padding: 1rem;
        }

        /* CTA Button */
        .cta-button {
            background-color: var(--primary-color);
            color: var(--bg-dark);
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin: 2rem 0;
            transition: transform 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            text-decoration: none;
        }

        /* Footer */
        footer {
            background-color: var(--card-bg);
            padding: 2rem 0;
            text-align: center;
            margin-top: 3rem;
        }

        .footer-links {
            margin-top: 1rem;
        }

        .footer-links a {
            margin: 0 1rem;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #0b0f19;
            padding: 20px;
            text-align: center;
            z-index: 1000;
            display: none;
        }

        .cookie-banner button {
            background-color: var(--accent-gold);
            color: var(--bg-dark);
            border: none;
            padding: 10px 20px;
            margin: 5px;
            border-radius: 5px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
    