        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .content {
            flex: 1;
            padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        /* Стили футера */
        .footer {
            background: #282828;
            color: #ffffff;
            padding: 50px 0 20px;
            margin-top: auto;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .logo-circle {
            width: 50px;
            height: 50px;
            background: #ffffff;
            color: #2a5885;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 24px;
        }
        
        .logo-text {
            font-size: 22px;
            font-weight: bold;
            color: #ffffff;
        }
        
        .footer-description {
            color: #949494;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 14px;
            max-width: 300px;
        }
        
        .footer-heading {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 40px;
            height: 2px;
            background: #fdbe34; /* Изменен цвет на fdbe34 */
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #949494;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: #ffffff;
        }
        
        .footer-links i {
            width: 16px;
            color: #fdbe34; /* Изменен цвет на fdbe34 */
        }
        
        .contact-info {
            color: #949494;
            font-size: 14px;
            line-height: 1.8;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-info i {
            color: #fdbe34; /* Изменен цвет на fdbe34 */
            width: 16px;
        }
        
        .phone {
            font-size: 18px;
            font-weight: bold;
            color: #ffffff;
            margin: 10px 0;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #fdbe34; /* Изменен цвет на fdbe34 */
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px 0;
            border-top: 1px solid #3d3d3d;
            margin-top: 50px;
            text-align: center;
        }
        
        .copyright {
            color: #949494;
            font-size: 13px;
        }
        
        .payment-methods {
            display: flex;
            gap: 15px;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
        }
        
        .payment-icon {
            color: #949494;
            font-size: 20px;
        }
        
        .badge {
            background: rgba(253, 190, 52, 0.2); /* Изменен цвет на fdbe34 */
            color: #fdbe34; /* Изменен цвет на fdbe34 */
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-logo {
                justify-content: center;
            }
            
            .footer-description {
                margin: 0 auto 25px;
            }
            
            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 480px) {
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer-heading {
                font-size: 16px;
                margin-bottom: 20px;
            }
            
            .phone {
                font-size: 16px;
            }
            
            .social-links {
                justify-content: center;
            }
        }
