* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #c62828;
            color: #fff;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Arial Black', sans-serif;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-list li {
            margin-left: 20px;
        }
        
        .nav-list a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .nav-list a:hover {
            color: #ffeb3b;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px 0;
            transition: all 0.3s;
        }
        
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .terms-content {
            background-color: #fff;
            border: 2px solid #212121;
            border-radius: 0;
            padding: 40px;
            box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
            margin-top: 30px;
        }
        
        h1 {
            color: #c62828;
            margin-bottom: 30px;
            font-size: 32px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        h2 {
            color: #c62828;
            margin: 25px 0 15px;
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        p {
            margin-bottom: 15px;
            color: #333;
            font-weight: 500;
        }
        
        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 10px;
            color: #333;
            font-weight: 500;
        }
        
        .footer {
            background-color: #212121;
            color: #fff;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Arial Black', sans-serif;
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }
        
        .footer-links a:hover {
            color: #ffeb3b;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #ccc;
            font-weight: 500;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #ccc;
        }
        
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .nav-list {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #c62828;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
            }
            
            .nav-list.active {
                transform: translateY(0);
            }
            
            .nav-list li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
        }

