
    /* Секция футера */
    .footer {
        background-color: #121212;
        color: #ffffff;
        padding: 40px 20px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .footer-column h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #ff7e37;
    }

    .footer-column p {
        font-size: 14px;
        line-height: 1.6;
        color: #ccc;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-column ul {
        list-style: none;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        font-size: 14px;
        color: #ccc;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-column ul li a:hover {
        color: #ff7e37;
        transform: translateX(5px);
    }

    .footer-column i {
        color: #ff7e37;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        color: #ccc;
        font-size: 20px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
        color: #ff7e37;
        transform: scale(1.2);
    }

    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #333;
    }

    .footer-bottom p {
        font-size: 13px;
        color: #ccc;
    }

    /* Анимации */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
        }

        .footer-column h3 {
            font-size: 16px;
        }

        .footer-column p, .footer-column ul li a {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-column ul li a {
            justify-content: center;
        }

        .social-links {
            justify-content: center;
        }
    }


    /* Секция карты */
    .map-section {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .map-header {
        margin-bottom: 20px;
    }

    .map-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #121212;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .map-header h2 i {
        color: #ff7e37;
    }

    .map-container {
        width: 100%;
        height: 500px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
    }

    /* Анимации */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .map-header h2 {
            font-size: 24px;
        }

        .map-container {
            height: 400px;
        }
    }

    @media (max-width: 480px) {
        .map-container {
            height: 300px;
        }
    }


    /* Секция услуг */
    .services {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .services-header {
        margin-bottom: 20px;
    }

    .services-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #121212;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .services-header h2 i {
        color: #ff7e37;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .service-column {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .service-item {
        background-color: #ffffff;
        border-radius: 8px;
        padding: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #333;
        font-weight: 500;
    }

    .service-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .service-item .tag {
        background-color: #e0f7f4;
        color: #007a5e;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
    }

    /* Модальное окно */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
        animation: fadeIn 0.3s ease;
    }

    .modal-content {
        background-color: #ffffff;
        margin: 15% auto;
        padding: 20px;
        border-radius: 12px;
        width: 80%;
        max-width: 500px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        animation: slideIn 0.3s ease;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close:hover,
    .close:focus {
        color: #121212;
    }

    #modal-title {
        font-size: 22px;
        font-weight: 700;
        color: #121212;
        margin-bottom: 15px;
    }

    #modal-description {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
    }

    #modal-description ul {
        list-style-type: disc;
        padding-left: 20px;
        margin: 10px 0;
    }

    #modal-description li {
        margin-bottom: 8px;
    }

    /* Анимации */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideIn {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
        }

        .modal-content {
            width: 90%;
            padding: 15px;
        }
    }

    @media (max-width: 480px) {
        .services-header h2 {
            font-size: 24px;
        }

        .service-item {
            font-size: 13px;
            padding: 10px;
        }

        .service-item .tag {
            font-size: 11px;
        }
    }


    /* Секция квиза */
    .quiz {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .quiz-header {
        margin-bottom: 20px;
    }

    .quiz-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #121212;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .quiz-header h2 i {
        color: #ff7e37;
    }

    .quiz-container {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .quiz-step h3 {
        font-size: 20px;
        font-weight: 600;
        color: #121212;
        margin-bottom: 20px;
        text-align: center;
    }

    .quiz-options {
        display: grid;
        gap: 10px;
        margin-bottom: 20px;
    }

    .quiz-option {
        background-color: #f9f9f9;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 12px;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .quiz-option:hover {
        background-color: #e0f7f4;
        border-color: #ff7e37;
        transform: translateY(-2px);
    }

    .quiz-option.selected {
        background-color: #e0f7f4;
        border-color: #ff7e37;
        font-weight: 600;
    }

    .quiz-option .tag {
        background-color: #ff7e37;
        color: #ffffff;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
    }

    .quiz-nav {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .quiz-btn {
        background-color: #ff7e37;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .quiz-btn:hover {
        background-color: #007a5e;
        transform: translateY(-2px);
    }

    .quiz-btn:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

    .quiz-btn.secondary {
        background-color: #ffffff;
        color: #007a5e;
        border: 1px solid #007a5e;
    }

    .quiz-btn.secondary:hover {
        background-color: #f0fafa;
        transform: translateY(-2px);
    }

    #contact-info {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    #contact-info p {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    #contact-info i {
        color: #ff7e37;
    }

    /* Анимации */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .quiz-header h2 {
            font-size: 24px;
        }

        .quiz-container {
            padding: 16px;
        }

        .quiz-options {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .quiz-step h3 {
            font-size: 18px;
        }

        .quiz-option {
            font-size: 13px;
            padding: 10px;
        }

        .quiz-btn {
            font-size: 13px;
            padding: 8px 16px;
        }
    }




    /* Секция услуг */
    .services {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .services-header {
        margin-bottom: 30px;
    }

    .services-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #121212;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .services-header h2 i {
        color: #ff7e37;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .service-card {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .service-card i {
        font-size: 40px;
        color: #ff7e37;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #121212;
    }

    /* Модальное окно */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
        animation: fadeIn 0.3s ease;
    }

    .modal-content {
        background-color: #ffffff;
        margin: 15% auto;
        padding: 30px;
        border-radius: 12px;
        width: 80%;
        max-width: 600px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        animation: slideIn 0.3s ease;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close:hover,
    .close:focus {
        color: #121212;
    }

    #modal-title {
        font-size: 24px;
        font-weight: 700;
        color: #121212;
        margin-bottom: 20px;
    }

    #modal-description {
        font-size: 15px;
        color: #333;
        line-height: 1.6;
    }

    #modal-description ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-top: 10px;
    }

    #modal-description li {
        margin-bottom: 10px;
    }

    /* Анимации */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideIn {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
        }

        .modal-content {
            width: 90%;
            padding: 20px;
        }
    }


    /* Секция агрегаторов */
    .aggregators {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .aggregators-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .aggregators-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #121212;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .aggregators-header h2 i {
        color: #ff7e37;
    }

    .filters {
        display: flex;
        gap: 15px;
        align-items: center;
        flex-wrap: wrap;
    }

    .filters select, .filters button {
        padding: 10px 20px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background-color: #ffffff;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .filters button {
        background-color: #ff7e37;
        color: #ffffff;
        border: none;
    }

    .filters select:hover, .filters button:hover {
        background-color: #007a5e;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .aggregator-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .aggregator-card {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
        animation-delay: calc(0.2s * var(--i));
    }

    .aggregator-card:hover {
        background-color: #f0fafa;
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .aggregator-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: #121212;
    }

    .stats {
        display: flex;
        gap: 15px;
        font-size: 14px;
        color: #666;
    }

    .stats i {
        color: #ff7e37;
        margin-right: 5px;
    }

    .description {
        font-size: 15px;
        color: #333;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .tags {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .tags span {
        background-color: #e0f7f4;
        color: #007a5e;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .tags i {
        font-size: 12px;
    }

    .details {
        display: grid;
        gap: 10px;
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
    }

    .details p {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .details i {
        color: #ff7e37;
    }

    .details strong {
        color: #333;
    }

    .services {
        font-size: 14px;
        color: #333;
        margin-bottom: 15px;
    }

    .services i {
        color: #ff7e37;
        margin-right: 8px;
    }

    .services strong {
        color: #333;
    }

    .links {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .links a.website {
        font-size: 14px;
        color: #ff7e37;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .links a.website i {
        margin-right: 8px;
    }

    .links a.website:hover {
        text-decoration: underline;
    }

    .links .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #ff7e37;
        color: #ffffff;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .links .btn:hover {
        background-color: #007a5e;
        transform: translateY(-2px);
    }

    /* Анимации */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .aggregators-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .filters {
            flex-direction: column;
            align-items: flex-start;
        }

        .card-header {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 480px) {
        .aggregators-header h2 {
            font-size: 24px;
        }

        .aggregator-card {
            padding: 16px;
        }

        .aggregator-card h3 {
            font-size: 18px;
        }

        .description {
            font-size: 14px;
        }

        .stats, .details, .services, .links a.website, .links .btn {
            font-size: 13px;
        }
    }

  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background-color: #f5f5f5;
        }

        /* Меню */
        .menu {
            background-color: #121212;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .menu nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .menu .logo {
            color: #ffffff;
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .menu .logo:hover {
            transform: scale(1.05);
        }

        .menu ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .menu ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .menu ul li a i {
            font-size: 18px;
        }

        .menu ul li a:hover {
            color: #ff7e37;
            transform: translateY(-2px);
        }

        /* УТП */
        .utp {
            background: linear-gradient(135deg, #ff7e37, #007a5e);
            color: #ffffff;
            padding: 80px 20px;
            text-align: center;
            overflow: hidden;
        }

        .utp-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .utp h1 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .utp-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 40px;
            margin: 40px 0;
        }

        .utp-stats div {
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: calc(0.2s * var(--i));
        }

        .utp-stats .stat-number {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .utp-stats .stat-text {
            font-size: 16px;
            opacity: 0.8;
        }

        .utp-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .utp-buttons a {
            background-color: #ffffff;
            color: #007a5e;
            padding: 14px 32px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.6s;
        }

        .utp-buttons a:hover {
            background-color: #121212;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Анимации */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .menu nav {
                flex-direction: column;
                gap: 15px;
            }

            .menu ul {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .utp h1 {
                font-size: 28px;
            }

            .utp-stats {
                gap: 20px;
            }

            .utp-stats .stat-number {
                font-size: 24px;
            }

            .utp-stats .stat-text {
                font-size: 14px;
            }

            .utp-buttons a {
                padding: 12px 24px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .utp {
                padding: 40px 20px;
            }

            .utp h1 {
                font-size: 24px;
            }
        }
    /* Секция описания */
    .description {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .description-container {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .description-container h2 {
        font-size: 28px;
        font-weight: 700;
        color: #121212;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .description-container h2 i {
        color: #ff7e37;
    }

    .description-container h3 {
        font-size: 20px;
        font-weight: 600;
        color: #121212;
        margin: 20px 0 10px;
    }

    .description-container p {
        font-size: 15px;
        color: #333;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .description-container ul, .description-container ol {
        font-size: 14px;
        color: #333;
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .description-container ul li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .description-container ul li i {
        color: #ff7e37;
    }

    .description-container ol li {
        margin-bottom: 10px;
    }

    .description-container ol li strong {
        color: #121212;
    }

    /* Анимации */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .description-container h2 {
            font-size: 24px;
        }

        .description-container h3 {
            font-size: 18px;
        }

        .description-container p {
            font-size: 14px;
        }

        .description-container ul, .description-container ol {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .description-container {
            padding: 16px;
        }

        .description-container h2 {
            font-size: 20px;
        }

        .description-container h3 {
            font-size: 16px;
        }
    }