@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
        :root {
            --bg-color: rgb(25, 25, 25);
            --primary-color: rgb(255, 69, 0);
            --secondary-color: rgb(200, 200, 200);
            --text-color: rgb(240, 240, 240);
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(25, 25, 25, 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 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            text-decoration: none;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }
        nav a:hover {
            color: var(--primary-color);
        }
        main {
            padding: 80px 0;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 40px;
            text-transform: uppercase;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        p, ul {
            margin-bottom: 20px;
        }
        ul {
            padding-left: 20px;
        }
        footer {
            background-color: var(--bg-color);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        footer nav {
            display: flex;
            gap: 20px;
        }
        footer nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }
        footer nav a:hover {
            color: var(--primary-color);
        }
        .contacts {
            text-align: right;
        }
        .contacts p {
            margin-bottom: 5px;
            font-size: 0.9rem;
        }
        .contacts a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .contacts a:hover {
            color: var(--primary-color);
        }
        @media (max-width: 768px) {
            header .container {
                flex-direction: column;
                gap: 20px;
            }
            nav ul {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            footer .container {
                flex-direction: column;
                gap: 20px;
            }
            footer nav {
                order: 2;
                justify-content: center;
            }
            .contacts {
                text-align: center;
                order: 3;
            }
        }

