        /* ========== Футер: Техподдержка ========== */
        .footer-section {
            padding: 60px 20px 40px;
            background-color: #35424a;
            color: #ffffff;
            text-align: center;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-section h2 {
            font-size: 1.8rem;
            margin-bottom: 24px;
            color: #ffffff;
        }

        .footer-email {
            font-size: 1.2rem;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .email-link {
            color: #ffcc00;
            text-decoration: none;
            font-weight: bold;
        }

        .email-link:hover {
            text-decoration: underline;
        }

        .footer-social {
            font-size: 1.2rem;
            margin-bottom: 24px;
            line-height: 1.6;
            text-align: center;
        }

        .footer-legal {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #cccccc;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-top: 20px;
        }

        .footer-link {
            color: #ffcc00;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: #ff6b6b;
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .footer-links {
                gap: 10px;
            }
            .footer-link {
                font-size: 0.9rem;
            }
        }
