@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

        :root {
            --primary-color: #5d5d81;
            --secondary-color: #8c73c3;
            --accent-color: #c95163;
            --background-dark: #121212;
            --background-light: #f4f4f9;
            --text-color: #f4f4f9;
            --text-color-dark: #121212;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            background: var(--background-dark);
            color: var(--text-color);
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        header {
            position: sticky;
            top: 0;
            width: 100%;
            background: var(--background-dark);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--text-color);
            font-weight: 600;
            position: relative;
            text-decoration: none;
        }

        main {
            padding-top: 5rem;
            min-height: 80vh;
        }

        h1 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        h2 {
            color: var(--accent-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1rem;
        }

        ul {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }

        footer {
            background: var(--background-dark);
            color: var(--text-color);
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-links {
            display: flex;
            gap: 1rem;
        }
        
        .footer-links a {
            color: var(--text-color);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: #aaa;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 1rem;
            }
        }

