@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap');
        
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #f39c12;
            --accent-color: #e74c3c;
            --text-color: #ecf0f1;
            --bg-color: #1c2a38;
            --bg-light: #2c3e50;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--bg-light);
            box-shadow: var(--shadow);
            z-index: 1000;
            padding: 1rem 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Roboto', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: var(--accent-color);
        }
        
        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        
        .nav-active {
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 80px;
                height: calc(100vh - 80px);
                background-color: var(--bg-light);
                flex-direction: column;
                width: 70%;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                padding-top: 50px;
                box-shadow: -2px 0 5px rgba(0,0,0,0.5);
            }
        
            .nav-links a {
                font-size: 1.5rem;
            }

            .burger-menu {
                display: flex;
            }
        }
        
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }

        .terms-container {
            background-color: var(--bg-light);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 30px;
            color: var(--secondary-color);
        }

        h2 {
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        p, li {
            margin-bottom: 15px;
        }
        
        ul {
            padding-left: 20px;
        }

        footer {
            background-color: var(--bg-light);
            color: var(--text-color);
            text-align: center;
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            text-align: left;
        }
        
        .footer-logo {
            flex-basis: 100%;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--secondary-color);
        }
        
        .footer-links, .footer-contacts {
            flex-basis: 45%;
            margin-bottom: 20px;
        }

        .footer-links h4, .footer-contacts h4 {
            margin-bottom: 15px;
        }

        .footer-links ul {
            list-style: none;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .footer-contacts p {
            margin: 5px 0;
        }
        
        .footer-bottom {
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.8rem;
        }

        @media (max-width: 768px) {
            .footer-links, .footer-contacts {
                flex-basis: 100%;
            }
        }

