:root {
            --primary-color: #0d1b2a;
            --secondary-color: #1b263b;
            --accent-color: #415a77;
            --text-color: #e0e1dd;
            --highlight-color: #778da9;
            --font-family-primary: 'Arial', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-family-primary);
            color: var(--text-color);
            background-color: var(--primary-color);
            line-height: 1.6;
        }

        a {
            color: var(--highlight-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #ffffff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: rgba(13, 27, 42, 0.9);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--highlight-color);
        }
        
        main {
            padding: 80px 0;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--highlight-color);
        }

        h2 {
            font-size: 1.8rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--text-color);
        }
        
        h3 {
            font-size: 1.4rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--highlight-color);
        }
        
        p, ul {
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        
        ul {
            list-style: none;
            padding-left: 20px;
        }

        ul li {
            margin-bottom: 10px;
            position: relative;
        }

        ul li::before {
            content: '•';
            color: var(--highlight-color);
            position: absolute;
            left: -20px;
        }

        .content {
            background-color: var(--secondary-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .nav-menu {
            display: none;
        }
        
        footer {
            background-color: var(--primary-color);
            padding: 40px 0;
            border-top: 1px solid var(--accent-color);
        }
        
        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            text-align: center;
        }

        footer .footer-nav {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        footer .footer-contacts {
            text-align: right;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--highlight-color);
            margin-bottom: 10px;
        }
        
        .footer-contacts p {
            margin-bottom: 5px;
        }

        .cookie-banner {
            display: none;
        }
        
        @media (max-width: 768px) {
            footer .container {
                flex-direction: column;
                gap: 20px;
            }

            footer .footer-nav {
                flex-direction: column;
            }

            footer .footer-contacts {
                text-align: center;
            }
        }

