:root {
            --primary-color: #5D26C1;
            --secondary-color: #A13E97;
            --text-color: #E2E2E2;
            --background-color: #1A1A1A;
            --accent-color: #D65A31;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-size: 2em;
            font-weight: bold;
            color: var(--primary-color);
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--accent-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }

        .burger-menu div {
            width: 100%;
            height: 3px;
            background: var(--text-color);
            transition: all 0.3s ease;
        }

        .nav-active {
            transform: translateX(0) !important;
        }

        .menu-open .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-open .line2 {
            opacity: 0;
        }

        .menu-open .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        h1 {
            font-size: 3.5em;
            line-height: 1.2;
            text-align: center;
        }

        h2 {
            font-size: 2.5em;
            margin-top: 40px;
        }

        h3 {
            font-size: 1.8em;
        }
        
        .page-content {
            padding: 50px 0;
        }

        .page-content p {
            margin-bottom: 20px;
        }

        .page-content ul {
            list-style-position: inside;
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .page-content ul li {
            margin-bottom: 10px;
        }

        footer {
            background: #111;
            color: #aaa;
            padding: 40px 0;
            text-align: center;
        }

        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            flex-basis: 100%;
            margin-bottom: 20px;
        }

        .footer-logo a {
            font-size: 1.5em;
            color: var(--primary-color);
            font-weight: bold;
        }

        .footer-links, .footer-contact {
            flex: 1 1 45%;
            margin-bottom: 20px;
            text-align: left;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li a {
            color: #aaa;
        }

        .footer-links ul li a:hover {
            color: var(--accent-color);
        }

        .footer-contact p {
            margin: 5px 0;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5em;
            }

            h2 {
                font-size: 2em;
            }
            
            .header-content {
                flex-wrap: wrap;
            }

            nav {
                width: 100%;
                display: none;
            }
            
            nav.active {
                display: block;
                animation: slideIn 0.5s forwards;
            }
            
            @keyframes slideIn {
                from {
                    max-height: 0;
                    opacity: 0;
                }
                to {
                    max-height: 500px;
                    opacity: 1;
                }
            }

            nav ul {
                flex-direction: column;
                text-align: center;
                padding-top: 20px;
            }

            nav ul li {
                margin: 10px 0;
            }

            .burger-menu {
                display: flex;
            }

            .footer-content {
                flex-direction: column;
            }

            .footer-links, .footer-contact {
                text-align: center;
            }
        }

