/* Мобильные устройства до 767.98px*/

@media (max-width: 767.98px) {
    /* =============================================================================
       ОБЩИЕ ОПТИМИЗАЦИИ ДЛЯ ПРОИЗВОДИТЕЛЬНОСТИ
       ============================================================================= */
    /* Отключаем сложные анимации для улучшения производительности */
    *,
    *::before,
    *::after {
        animation-duration: 0.4s !important;
        transition-duration: 0.3s !important;
    }
    /* Упрощенные трансформации */
    .glitch-logo {
        animation: none !important;
        /* Убираем glitch эффект */
        transform: none !important;
    }
    .glitch-logo::before,
    .glitch-logo::after {
        display: none !important;
        /* Убираем псевдоэлементы glitch */
    }
    /* Упрощаем анимации hero секции */
    .hero::before,
    .hero::after {
        animation: none !important;
        opacity: 0.03 !important;
        /* Минимальная непрозрачность */
    }
    /* Убираем сложные градиенты и эффекты */
    .hero {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
        animation: none !important;
    }
    /* Упрощаем анимации заголовков */
    .hero-title,
    .hero-subtitle {
        animation: simpleFadeIn 0.6s ease-out !important;
    }
    .hero-title .text-primary::before,
    .hero-title .text-primary::after {
        display: none !important;
        /* Убираем дополнительные эффекты */
    }
    /* Упрощенная анимация появления */
    @keyframes simpleFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Отключаем hover эффекты на мобильных */
    .hero-stat-item:hover,
    .benefit-card-modern:hover,
    .ai-avatar:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }
    /* =============================================================================
       НАВИГАЦИОННАЯ ПАНЕЛЬ - ОПТИМИЗИРОВАННАЯ  
       ============================================================================= */
    body {
        padding-top: 50px;
        /* Меньший отступ для мобильных */
    }
    .header-nav {
        padding: 0.5rem 0;
        backdrop-filter: blur(12px) !important;
        /* Уменьшаем blur для производительности */
        -webkit-backdrop-filter: blur(12px) !important;
    }
    .header-nav.scrolled {
        padding: 0.25rem 0;
    }
    .navbar-brand.glitch-brand {
        gap: 0.75rem;
        transition: all 0.2s ease !important;
        /* Упрощаем transition */
    }
    .header-nav.scrolled .navbar-brand.glitch-brand {
        gap: 0.5rem;
        transform: scale(0.95) !important;
        /* Упрощаем трансформацию */
    }
    .glitch-logo {
        font-size: 1.3rem;
        transition: font-size 0.2s ease !important;
    }
    .header-nav.scrolled .glitch-logo {
        font-size: 1.1rem;
    }
    .glitch-subtitle {
        font-size: 0.6rem;
        letter-spacing: 1px;
        transition: all 0.2s ease !important;
    }
    .header-nav.scrolled .glitch-subtitle {
        font-size: 0.5rem;
        opacity: 0.6;
    }
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.5rem !important;
        transition: color 0.2s ease !important;
        /* Упрощаем transition */
    }
    .header-nav.scrolled .navbar-nav .nav-link {
        font-size: 0.8rem;
        padding: 0.25rem 0.4rem !important;
    }
    /* Упрощаем анимацию подчеркивания */
    .navbar-nav .nav-link::after {
        transition: width 0.2s ease !important;
    }
    /* =============================================================================
       HERO СЕКЦИЯ - ОПТИМИЗИРОВАННАЯ
       ============================================================================= */
    .scroll-to-top {
        bottom: 80px;
        right: 16px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        text-align: center;
    }
    /* Центрирование кнопки ИИ-Консультант */
    .navbar-nav .nav-item:last-child {
        display: flex;
        justify-content: center;
        margin: 0.5rem 0;
    }
    .navbar-nav .btn-primary.btn-sm {
        margin: 0 auto;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    /* Дополнительный стиль для кнопки в мобильном меню */
    #navbarNav .navbar-nav .nav-item:last-child {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    #navbarNav .navbar-nav .nav-item:last-child .btn {
        width: 100%;
        margin: 0.5rem auto;
    }
    .hero {
        padding: 60px 0;
        min-height: calc(100vh - 70px);
    }
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .hero-subtitle {
        text-align: center;
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    .ai-promo-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
        margin-top: 1rem;
        backdrop-filter: blur(15px) !important;
        /* Уменьшаем blur */
        -webkit-backdrop-filter: blur(15px) !important;
    }
    .ai-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        animation: simpleScale 2s ease-in-out infinite !important;
        /* Упрощаем анимацию */
    }
    /* Упрощенная анимация для AI аватара */
    @keyframes simpleScale {
        0%,
        100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
    .ai-avatar::after {
        animation: none !important;
        /* Убираем сложную анимацию кольца */
    }
    .ai-content h4 {
        font-size: 1.3rem;
    }
    .ai-content p {
        font-size: 1rem;
    }
    /* =============================================================================
       ОСТАЛЬНЫЕ СЕКЦИИ
       ============================================================================= */
    .benefits-stats {
        gap: 1rem;
    }
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .benefit-card-modern {
        padding: 1.5rem;
        backdrop-filter: blur(10px) !important;
        /* Уменьшаем blur */
        -webkit-backdrop-filter: blur(10px) !important;
    }
    .benefit-icon-modern {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    .icon-glow {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        animation: simpleScale 3s ease-in-out infinite !important;
        /* Упрощаем анимацию */
    }
    /* =============================================================================
       СВАЙПЕР ОПТИМИЗАЦИЯ
       ============================================================================= */
    /* Улучшаем работу свайпера на мобильных */
    .swiper {
        touch-action: pan-y pinch-zoom !important;
    }
    .swiper-slide {
        will-change: transform !important;
        backface-visibility: hidden !important;
        transform: translateZ(0) !important;
        /* Аппаратное ускорение */
    }
    .benefits-swiper,
    .reviews-swiper {
        overflow: visible !important;
    }
    .swiper-wrapper {
        transform-style: preserve-3d !important;
    }
    /* Оптимизация навигации свайпера */
    .swiper-button-next,
    .swiper-button-prev {
        background-color: rgba(255, 255, 255, 0.9) !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
        color: #333 !important;
        font-weight: bold !important;
    }
    .swiper-pagination-bullet {
        background: rgba(255, 219, 77, 0.3) !important;
        opacity: 1 !important;
    }
    .swiper-pagination-bullet-active {
        background: var(--yandex-yellow) !important;
    }
    /* Улучшение производительности для свайпера */
    .swiper-initialized {
        transform: translateZ(0) !important;
        backface-visibility: hidden !important;
    }
    /* Отключение анимаций при изменении размера окна */
    .resize-animation-stopper * {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    .role-tabs {
        flex-direction: column;
        width: 100%;
    }
    .role-tab {
        padding: 0.75rem 1.5rem;
        text-align: center;
    }
    .timeline-container::before {
        left: 30px;
    }
    .timeline-step {
        flex-direction: row !important;
        padding-left: 80px;
    }
    .timeline-step:nth-child(even) .step-content {
        text-align: left;
    }
    .step-marker {
        position: absolute;
        left: 0;
        margin: 0;
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .step-content {
        padding: 1.5rem;
        margin-left: 1rem;
    }
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .cta-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    .cta-feature {
        text-align: center;
    }
    .calculator-card {
        padding: 1.5rem;
    }
    .earning-amount {
        font-size: 2.5rem;
    }
    /* Дополнительные стили для секций */
    .benefits-modern,
    .process-modern {
        backdrop-filter: none !important;
        /* Убираем backdrop-filter для производительности */
        -webkit-backdrop-filter: none !important;
    }
    .benefits-modern::before,
    .benefits-modern::after,
    .process-modern::before,
    .process-modern::after {
        display: none !important;
        /* Убираем декоративные элементы */
    }
    /* Улучшенный чат-виджет для мобильных устройств */
    .chat-widget {
        width: 100%;
        height: 100%;
        max-height: 85vh;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 20px 20px 0 0;
        border-width: 2px 2px 0 2px;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
        transform: translateY(100%);
    }
    .chat-widget.open {
        transform: translateY(0);
        height: 85vh;
    }
    .chat-header {
        padding: 1rem;
        border-radius: 20px 20px 0 0;
        position: relative;
    }
    .chat-header::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
    }
    .chat-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    .chat-info h5 {
        font-size: 1.1rem;
    }
    .chat-status {
        font-size: 0.8rem;
    }
    .chat-close {
        font-size: 1.7rem;
        padding: 0.3rem;
    }
    .chat-body {
        height: calc(100% - 160px);
        padding: 0.75rem;
    }
    .chat-message {
        margin-bottom: 0.75rem;
    }
    .ai-message .message-content {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        margin-left: 0;
        border-radius: 0 15px 15px 15px;
    }
    .user-message .message-content {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        border-radius: 15px 0 15px 15px;
    }
    .message-time {
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
    .chat-input {
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    .chat-input .form-control {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        height: auto;
        border-radius: 20px;
    }
    .chat-input .btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .chat-actions {
        padding: 0 0.75rem;
    }
    .chat-actions .btn {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    .chat-toggle {
        bottom: 16px;
        right: 16px;
        padding: 0.75rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .chat-text {
        display: none;
    }
    .chat-icon {
        font-size: 1.5rem;
    }
    /* Calculator mobile */
    .calculator-card {
        padding: 1.5rem;
    }
    .calculator-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    .calculator-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .job-type-card {
        flex-direction: column;
        text-align: center;
    }
    .job-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: 0 auto 1rem;
    }
    .calculator-stats,
    .calculator-results {
        margin-top: 1.5rem;
    }
    /* Более компактный калькулятор для мобильных */
    .calculator .text-center.mb-5 {
        margin-bottom: 1.5rem !important;
    }
    .calculator-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    .calculator .row.g-4.mb-4 {
        margin-bottom: 1rem !important;
        row-gap: 1rem !important;
    }
    .calculator .form-label {
        margin-bottom: 0.35rem;
        font-size: 0.95rem;
    }
    .calculator-select {
        font-size: 0.95rem;
        padding: 0.5rem;
    }
    .job-type-info {
        margin-bottom: 1rem !important;
    }
    .job-type-card {
        padding: 0.75rem;
    }
    .job-icon {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        margin-bottom: 0.75rem;
    }
    .job-details h5 {
        font-size: 1.1rem;
        margin-bottom: 0.35rem;
    }
    .job-details p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    .range-value {
        font-size: 0.9rem;
        margin-top: 0.35rem;
    }
    .calculator-stats {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .stat-card {
        padding: 0.75rem;
    }
    .stat-icon {
        font-size: 1.4rem;
        margin-bottom: 0.35rem;
    }
    .stat-label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    .stat-value {
        font-size: 1rem;
    }
    .calculator-results {
        margin-top: 1rem;
    }
    .result-card {
        padding: 0.75rem;
    }
    .result-period {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }
    .result-amount {
        font-size: 1.3rem;
    }
    .result-amount.main-result {
        font-size: 1.5rem;
    }
    .calculator-disclaimer {
        margin-top: 1rem;
    }
    .calculator-disclaimer p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    .cta-buttons .btn {
        padding: 0.6rem;
        font-size: 1rem;
    }
    /* Reviews mobile */
    .review-card {
        padding: 1.5rem;
    }
    .review-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    .review-card.featured {
        transform: none;
    }
    .review-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    /* Оптимизированные отзывы для мобильных */
    .reviews .text-center.mb-5 {
        margin-bottom: 2rem !important;
    }
    .reviews-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    .reviews-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .reviews-swiper-container {
        margin: 1.5rem 0;
        padding: 0 15px;
    }
    .reviews-swiper {
        padding: 15px 0 30px;
    }
    .review-card {
        padding: 1.25rem;
        border-radius: 16px;
    }
    .review-header {
        gap: 0.85rem;
        margin-bottom: 1.25rem;
    }
    .review-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    .review-avatar.verified::after {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
        bottom: -4px;
        right: -4px;
        border-width: 2px;
    }
    .review-info h5 {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }
    .review-rating {
        gap: 0.4rem;
        margin-bottom: 0.4rem;
    }
    .review-rating .stars {
        font-size: 0.9rem;
    }
    .review-rating .rating-text {
        font-size: 0.9rem;
    }
    .review-role {
        font-size: 0.85rem;
    }
    .review-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    .review-stats {
        gap: 0.4rem;
        margin-bottom: 0.85rem;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .review-stats .stat {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }
    .review-verified {
        font-size: 0.8rem;
        padding: 0.5rem 0.6rem;
        border-radius: 8px;
    }
    .review-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
        border-radius: 15px;
        top: -10px;
        right: 20px;
    }
    /* Навигация свайпера для мобильных */
    .reviews-swiper .swiper-button-next,
    .reviews-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    .reviews-swiper .swiper-button-next::after,
    .reviews-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
    .reviews-swiper .swiper-button-next {
        right: -10px;
    }
    .reviews-swiper .swiper-button-prev {
        left: -10px;
    }
    .reviews-swiper .swiper-pagination {
        margin-top: 1.5rem;
    }
    .reviews-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    /* CTA секция для мобильных */
    .reviews-cta {
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 16px;
    }
    .reviews-cta h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    .reviews-cta p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    .reviews-cta .btn {
        width: 100%;
        padding: 0.85rem;
        font-size: 1rem;
    }
    /* FAQ mobile */
    .faq-question {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .faq-question h3 {
        font-size: 1.1rem;
    }
    .faq-content {
        padding: 1.5rem;
    }
    .feature-grid,
    .payment-features {
        grid-template-columns: 1fr;
    }
    .car-options {
        gap: 0.75rem;
    }
    .car-option {
        padding: 0.75rem;
    }
    .timeline-mini {
        flex-direction: column;
        gap: 1rem;
    }
    .commission-details {
        gap: 0.5rem;
    }
    .faq-cta {
        padding: 1.5rem;
    }
    .faq-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    /* Footer Mobile - Улучшенные стили */
    .footer-modern {
        padding-bottom: 1.5rem;
    }
    .footer-main {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    .footer-brand {
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0.75rem;
    }
    .footer-logo-text {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
    .footer-logo-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
    }
    .footer-stats {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.25rem;
    }
    .footer-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-stat .stat-number {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.2rem;
    }
    .footer-stat .stat-label {
        font-size: 0.75rem;
        opacity: 0.8;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        position: relative;
        display: inline-block;
    }
    .footer-title:after {
        content: '';
        display: block;
        height: 2px;
        width: 50%;
        background: var(--primary-color);
        margin: 0.4rem auto 0;
        border-radius: 2px;
    }
    .footer-links {
        padding: 0;
        list-style: none;
        margin-bottom: 0;
    }
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    .footer-links a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.3s;
        display: inline-block;
        padding: 0.2rem 0;
    }
    .footer-links a:hover {
        color: var(--primary-color);
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.4rem;
    }
    .contact-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--card-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-info strong {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    .contact-info span,
    .contact-info a {
        font-size: 0.8rem;
        color: var(--text-color);
        text-decoration: none;
    }
    .contact-info a:hover {
        color: var(--primary-color);
    }
    .contact-info small {
        font-size: 0.7rem;
        opacity: 0.7;
        margin-top: 0.2rem;
    }
    .footer-bottom {
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.75rem;
    }
    .footer-copyright {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    .footer-badge {
        display: inline-block;
        background: rgba(var(--primary-rgb), 0.15);
        color: var(--primary-color);
        padding: 0.15rem 0.4rem;
        border-radius: 15px;
        font-size: 0.65rem;
        margin-top: 0.3rem;
    }
    .footer-legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-legal a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.75rem;
        transition: color 0.3s;
    }
    .footer-legal a:hover {
        color: var(--primary-color);
    }
    /* Legal Pages Mobile Styles */
    .legal-header {
        padding: 0.75rem 0;
    }
    .header-content {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    .back-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    .legal-content {
        padding: 1rem;
    }
    .legal-header-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .legal-title {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    .legal-title::after {
        width: 70px;
        height: 3px;
        margin: 0.8rem auto;
    }
    .legal-info {
        flex-direction: column;
        gap: 1rem;
    }
    .update-date,
    .legal-notice {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .legal-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    .legal-section h3 {
        font-size: 1.2rem;
        margin: 1.25rem 0 0.8rem 0;
    }
    .legal-section h4 {
        font-size: 1.05rem;
        margin: 0.8rem 0 0.6rem 0;
    }
    .section-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .important-notice,
    .disclaimer-box,
    .warning-box,
    .cookie-notice,
    .changes-notice {
        padding: 1.25rem;
        gap: 1rem;
    }
    .important-notice i,
    .disclaimer-box i,
    .warning-box i,
    .cookie-notice i,
    .changes-notice i {
        font-size: 1.4rem;
    }
    .data-category,
    .security-item,
    .service-item,
    .party-section,
    .ip-item,
    .dispute-step {
        padding: 1.25rem;
    }
    .contact-info {
        padding: 1.25rem;
    }
    .contact-item {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    .legal-footer {
        padding: 1.75rem 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-links a {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
}