    :root {
        --xai-primary-color: #007aff;
        --xai-secondary-color: #8e8e93;
        --xai-bg-color: rgba(255, 255, 255, 0.95);
        --xai-bg-blur: blur(20px);
        --xai-border-radius: 14px;
        --xai-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
        --xai-font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
        --xai-font-size: 14px;
        --xai-spacing: 20px;
        --xai-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    body {
        font-family: var(--xai-font-family);
        background: linear-gradient(135deg, #f5f7fa 0%, #e9e9e9 100%);
        /*            color: #1d1d1f;*/
        margin: 0;
        padding: 0;
    }

    .image-block .slider-container {
        position: relative;
        width: 100%;
        height: auto;
        overflow: initial;
        border-radius: 20px;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 3rem;
        text-transform: none;
        letter-spacing: 0px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        color: #6e6e73;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .vin-form {
        display: flex;
        justify-content: center;
        gap: 10px;
        max-width: 600px;
        margin: 0 auto;
    }

    .vin-input {
        padding: 12px 15px;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        /*            text-transform: uppercase;*/
    }

    .vin-input:focus {
        border-color: var(--xai-primary-color);
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
        outline: none;
    }

    .btn-blue {
        background: linear-gradient(135deg, #007BFF, #00A1FF);
        color: #fff;
        padding: 12px 24px;
        border-radius: 10px;
        border: none;
        font-size: 1rem;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-blue:hover {
        /*            transform: translateY(-2px);*/
        /*            box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);*/
    }

    .section {
        padding: 40px 20px;
        text-align: center;
    }

    .section-heading {
        font-size: 1.2rem;
        font-weight: 600;
        color: #6e6e73;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        color: #1d1d1f;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #6e6e73;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .benefits-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .benefit-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);

        padding: 20px;
        box-shadow: var(--xai-shadow);
        transition: transform 0.3s ease;
        text-align: left;
        border-radius: 10px;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .benefit-card i {
        font-size: 16px;
        color: var(--xai-primary-color);
        margin-bottom: 0;
        float: left;
        margin-right: 20px;
        margin-top: 6px;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #000;
    }

    .benefit-card p {
        font-size: 0.9rem;
        color: #6e6e73;
    }

    .order-form {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        border-radius: var(--xai-border-radius);
        padding: 0px;
        /* max-width: 600px; */
        margin: 0 auto;
        box-shadow: var(--xai-shadow);
        width: 100%;
    }

    .order-form .form-group {
        margin-bottom: 15px;
        position: relative;
    }

    .order-form label {
        display: flex;
        font-size: 0.9rem;
        font-weight: 900;
        color: #225dba;
        margin-bottom: 8px;
        justify-content: space-between;
        align-items: flex-end;
    }


    .order-form input,
    .order-form select {
        width: 100%;
        padding: 15px 15px;
        border-radius: 5px;
        border: 1px solid rgb(0 156 255 / 69%);
        background: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        background: #0279fc0d;
    }

    .order-form input::placeholder {
        color: rgb(0 156 255);
    }

    .order-form input:focus,
    .order-form select:focus {
        border-color: var(--xai-primary-color);
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
        outline: none;
    }

    .email-error-message {
        color: #ff453a;
        font-size: 0.8rem;
        margin-top: 5px;
        display: none;
    }

    .price-calculator {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        border-radius: var(--xai-border-radius);
        padding: 30px;
        max-width: 600px;
        margin: 0 auto;
        box-shadow: var(--xai-shadow);
    }

    .price-calculator .form-group {
        margin-bottom: 20px;
    }

    .price-display {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--xai-primary-color);
        margin-top: 20px;
    }

    .faq-section .accordion-item {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        border-radius: var(--xai-border-radius);
        margin-bottom: 10px;
        padding: 15px;
        box-shadow: var(--xai-shadow);
        cursor: pointer;
    }

    .faq-section .accordion-item.active .item-text {
        display: block;
    }

    .faq-section .item-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1d1d1f;
        margin-bottom: 10px;
    }

    .faq-section .item-text {
        font-size: 0.9rem;
        color: #6e6e73;
        display: none;
    }

    .testimonials {
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
    }

    .testimonials .swiper-slide {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        border-radius: var(--xai-border-radius);
        padding: 20px;
        box-shadow: var(--xai-shadow);
    }

    .testimonials .swiper-slide p {
        font-size: 0.9rem;
        color: #6e6e73;
        margin-bottom: 15px;
    }

    .testimonials .author {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .testimonials .author img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .testimonials .author div p {
        margin: 0;
        font-size: 0.9rem;
    }

    .testimonials .author div p:first-child {
        font-weight: 600;
        color: #1d1d1f;
    }

    .testimonials .author div p:last-child {
        color: #6e6e73;
    }

    .additional-info {
        max-width: 800px;
        margin: 0 auto;
        font-size: 0.9rem;
        color: #6e6e73;
        line-height: 1.6;
    }

    .additional-info h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1d1d1f;
        margin-bottom: 15px;
    }

    .additional-info p {
        margin-bottom: 15px;
    }

    .additional-info ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 15px;
    }

    .additional-info ul li {
        margin-bottom: 10px;
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 1.8rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .vin-form {
            flex-direction: column;
        }

        .vin-input {
            max-width: 100%;
        }

        .section-title {
            font-size: 1.6rem;
        }

        .section-subtitle {
            font-size: 0.9rem;
        }

        .benefits-section {
            grid-template-columns: 1fr;
        }
    }

    .header-contact-block::before {
        border-radius: 10px;
    }

    .header-contact-block a {
        color: #ffffff;
        background: initial;
    }

    table.Table-body {
        display: block;
    }


.hero-logo {
    width: 180px;
    margin-bottom: 0px;
}

.search-module-wrapper {
    position: relative;
    z-index: 99999;
}

.report-benefits {
    display: flex;
    gap: 10px;
}

.report-sample {
    position: relative;
    width: initial;
    display: flex;
    flex-direction: column;
}

.report-image {
    width: 100px;
    margin: auto;
}

.report-link {
    bottom: 50px;
    display: block;
    font-size: 12px;
    padding: 6px 12px;
    background: #ffffffad;
    font-weight: 600;
    border-radius: 10px;
    margin-left: 20px;
    left: 0;
    width: auto;
    right: 0;
    margin: auto;
    color: #000;
    backdrop-filter: blur(1px);
    position: relative;
    box-shadow: 0 6px 16px rgb(0 0 0 / 40%);
}

.report-list {
    display: block;
}

.slide {
    display: block;
}

.slide-details {
    position: relative;
    padding: 0;
    background: transparent;
}

.header-contact-block {
    background: repeating-linear-gradient(45deg, #fff, #fff 10px, #fbfbfb 10px, #fdfdfd 20px);
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    opacity: 1;
}

.header-contact-block h3 {
    text-align: center;
}

.form-price p {
    margin: 10px auto;
    display: block;
    width: fit-content;
    margin-top: 20px;
    font-weight: 700;
}

.price-amount {
    padding: 5px 10px;
    background: #deebff;
    font-weight: 700;
    border-radius: 7px;
    color: #1773ee;
    margin-top: 10px;
}

.discount-link {
    padding-top: 10px;
    font-size: 12px;
    color: #4eadff;
    display: block;
    text-align: center;
    text-decoration: underline;
}

.form-vin {
    position: relative;
    background: #ffffff12;
    padding: 0 20px;
    border-radius: 10px;
}

.vin-note {
    font-size: 12px;
    text-align: center;
    color: #3eb763;
    width: fit-content;
    padding: 4px;
    background: #3eb7630f;
    border-radius: 5px;
    margin: auto;
    border: 1px solid #6ad68b;
    font-weight: 400;
    line-height: normal;
}

.icon-container {
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(0%);
}

.form-email {
    display: none;
    position: relative;
    background: #ffffff12;
    padding: 20px;
    border-radius: 10px;
}

.form-email input {
    border: 3px solid #0094ff;
}

.pay-info {
    font-size: 0.8rem;
    color: #6e6e73;
    margin-top: 10px;
}

.pay-contact {
    font-size: 0.8rem;
    color: #6e6e73;
}

.contact-link {
    color: #007bff;
}

.credit-card-icon {
    margin-left: 5px;
    height: 20px;
    width: initial;
}
.hero-content {
    max-width: 1200px;
}


    .report-benefits {
        margin-top: 15px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: fit-content;
    }

    .report-benefits:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .report-benefits p {
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 10px;
        /*        text-align: center;*/
    }

    .report-benefits ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 10px;
    }

    .report-benefits li {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        padding: 5px;
        background: #1919192b;
        border-radius: 6px;
    }

    .report-benefits i {
        color: #3eb764;
        margin-right: 8px;
        font-size: 1rem;
        transition: transform 0.2s ease;
    }

    .report-benefits li:hover i {
        transform: scale(1.15);
    }

    .report-benefits span {
        font-size: 0.85rem;
        color: #fff;
    }

    @media (max-width: 768px) {
        .report-benefits {
            padding: 12px;
            width: 100%;
        }

        .report-benefits p {
            font-size: 0.9rem;
        }

        .report-benefits span {
            font-size: 0.8rem;
        }

        .report-benefits ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 0;
            flex-direction: column;
            margin: auto;
        }

        .benefit-card i {
            font-size: 16px;
            color: var(--xai-primary-color);
            margin-bottom: 0;
            float: left;
            margin-right: 8px;
            margin-top: 14px;
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0;
            margin-top: 10px;
            color: #000;
        }


    }

    .report-benefits {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .report-benefits:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .report-benefits li:hover i {
        transform: scale(1.15);
    }

    @media (max-width: 768px) {
        .report-benefits {
            padding: 12px;
        }

        .report-benefits p {
            font-size: 0.9rem;
        }

        .report-benefits span {
            font-size: 0.8rem;
        }
    }

    .highlight {
        display: inline-block;
        background: linear-gradient(135deg, #007BFF, #00A1FF);
        color: #fff;
        padding: 5px 10px;
        border-radius: 8px;
        font-weight: 600;
        margin-bottom: 5px;
    }



    .report-benefits {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .report-benefits:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }

    .benefit-item:hover {
        transform: scale(1.02);
    }

    .benefit-item i {
        transition: transform 0.2s ease;
    }

    .benefit-item:hover i {
        transform: scale(1.2);
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 1.8rem;
        }

        .search-instruction p {
            font-size: 0.9rem;
        }

        .report-benefits {
            padding: 15px;
        }

        .benefit-item {
            margin-bottom: 10px;
        }
    }

    .header-contact-block {
        transform: none;
    }

    .header-contact-block:hover {
        transform: translateY(0px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .header-contact-block:hover {
        transform: translateY(0px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .slide-details h3 {
        font-size: 1.5rem;
        font-weight: 900;
        margin: 0 0px;
        color: #000;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        margin-bottom: 20px;
    }

    .header-contact-block p {
        line-height: 1;
    }

    .slide:hover {
        transform: none;
        box-shadow: none;
    }

    .slide {
        /*    flex: 0 0 100%;*/
        /*    position: relative;*/
        background: transparent;
    }

    .icon-container {
        position: absolute;
        right: 10px;
        top: calc(50% - -6px);
    }

    .loader {
        position: relative;
        height: 20px;
        width: 20px;
        display: inline-block;
        animation: around 5.4s infinite;
    }

    @keyframes around {
        0% {
            transform: rotate(0deg)
        }

        100% {
            transform: rotate(360deg)
        }
    }

    .loader::after,
    .loader::before {
        content: "";
        background: transparent;
        position: absolute;
        display: inline-block;
        width: 100%;
        height: 100%;
        border-width: 2px;
        border-color: #047afe #047afe transparent transparent;
        border-style: solid;
        border-radius: 20px;
        box-sizing: border-box;
        top: 0;
        left: 0;
        animation: around 0.7s ease-in-out infinite;
    }

    .loader::after {
        animation: around 0.7s ease-in-out 0.1s infinite;
        background: transparent;
    }

    a.btn-blue.root:hover {
        color: #fff;
        opacity: 0.9;
    }


    table.Table-body {
        margin: 0px;
        border: 1px solid rgb(152 192 255);
        background: rgb(231 240 254);
        border-radius: 10px;
        padding: 10px 10px 10px;
        margin-bottom: 0px;
        display: none;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        margin: 0 20px;
    }

    button.btn-blue.link_post {
        font-weight: 900;
    }

    form.header-search-form {
        display: none;
    }

    .header-btn-sm {
        padding: 5px 10px;
        font-size: 12px;
        display: none;
    }

    .bottom-section {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: stretch;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .contact-block,
    .rating-container,
    .services-grid {
        flex: 1;
        min-width: 280px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .contact-block {
        gap: 12px;
        background-color: #222;
        padding: 20px;
        border: 1px solid rgba(128, 192, 255, 0.15);
    }

    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 12px 0;
        position: relative;
    }

    .contact-item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -6px;
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, rgba(128, 192, 255, 0), rgba(128, 192, 255, 0.5), rgba(128, 192, 255, 0));
        opacity: 0.7;
    }

    .contact-item:hover {
        transform: translateY(-2px);
        transition: transform 0.3s ease;
    }

    .contact-item h4 {
        font-size: 1.1rem;
        color: #80c0ff;
        margin: 0;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        transition: color 0.3s ease, filter 0.3s ease;
    }

    .contact-item:hover h4 {
        color: #ffffff;
        filter: drop-shadow(0 0 3px rgba(128, 192, 255, 0.5));
    }

    .contact-item p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.95);
        margin: 0;
        text-align: center;
        line-height: 1.6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .contact-item a {
        color: #80c0ff;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    }

    .contact-item a:hover {
        color: #ffffff;
        transform: scale(1.03);
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
    }

    .contact-item .btn {
        display: inline-block;
        padding: 8px 18px;
        background-color: transparent;
        color: #80c0ff;
        border: 1px solid #80c0ff;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.9rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-item .btn:hover {
        background-color: #80c0ff;
        color: #1a1a1a;
        transform: scale(1.03);
        box-shadow: 0 0 8px rgba(128, 192, 255, 0.4);
        animation: buttonPulse 0.5s ease-in-out;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin: 8px 0;
    }

    .social-links a {
        color: #80c0ff;
        font-size: 1.3rem;
        transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
    }

    .social-links a:hover {
        color: #ffffff;
        transform: scale(1.15);
        filter: drop-shadow(0 0 3px rgba(128, 192, 255, 0.5));
    }

    .rating-container {
        gap: 15px;
    }

    .rating-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        background-color: #222;
        border-radius: 6px;
        transition: transform 0.3s ease;
        justify-content: space-evenly;
    }

    .rating-block:hover {
        transform: scale(1.03);
    }

    .score {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: #80c0ff;
    }

    .stars {
        font-size: 1.3rem;
        color: #80c0ff;
        margin-bottom: 5px;
    }

    .reviews {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
        border-radius: 6px;
        background-color: #222;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
        /*    aspect-ratio: 1/1;*/
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #000000, #3c3c3c, #000000);
        opacity: 0.15;
        animation: gradientShift 8s ease-in-out infinite;
        z-index: 0;
    }

    .service-card>* {
        position: relative;
        z-index: 1;
    }

    .service-card:hover {
        transform: scale(1.05);
    }

    .service-card h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 8px 0 0;
        color: #fff;
        text-align: center;
    }

    .service-card svg {
        width: 40px;
        height: 40px;
        fill: #80c0ff;
        transition: fill 0.3s ease;
    }

    .service-card:hover svg {
        fill: #ffffff;
    }

    .service-card p {
        font-size: 12px;
        text-transform: none;
        margin-top: 20px;
        color: #999;
        height: 90px;
    }

    .exempel {
        display: grid;
        margin: auto;
        grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
        width: 1000px;
        align-items: center;
    }

    /* Animations */
    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.7;
        }

        50% {
            transform: scale(1.2);
            opacity: 1;
        }
    }

    @keyframes morph {

        0%,
        100% {
            d: path("M6 6h12v12H6z");
        }

        50% {
            d: path("M8 6h12v12H8z");
        }
    }

    @keyframes scan {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes strike {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-5px) rotate(5deg);
        }
    }

    @keyframes neonGlow {

        0%,
        100% {
            opacity: 0.6;
            filter: drop-shadow(0 0 2px #80c0ff);
        }

        50% {
            opacity: 1;
            filter: drop-shadow(0 0 5px #ffffff);
        }
    }

    @keyframes gridShift {

        0%,
        100% {
            d: path("M6 6h12v12H6z");
        }

        50% {
            d: path("M8 8h10v10H8z");
        }
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    @keyframes buttonPulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    .api svg .nodes {
        animation: rotate 10s linear infinite;
    }

    .api svg .pulse {
        animation: neonGlow 2s ease-in-out infinite;
    }

    .catalog svg .page {
        animation: gridShift 3s ease-in-out infinite;
    }

    .monitoring svg .radar {
        animation: scan 4s linear infinite;
    }

    .auction svg .gavel {
        animation: strike 1.5s ease-in-out infinite;
    }


    .discount-block {
        max-width: 1000px;
        margin: 20px auto;
        padding: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .discount-block:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .discount-block h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1d1d1f;
        margin-bottom: 15px;
    }

    .discount-table {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
        margin-bottom: 20px;
    }

    .discount-item {
        background: #f5f7fa;
        border-radius: 8px;
        padding: 10px;
        transition: transform 0.2s ease;
    }

    .discount-item:hover {
        transform: scale(1.05);
    }

    .discount-item .count {
        display: inline-block;
        background: #3eb764;
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 50%;
        margin-bottom: 8px;
    }

    .discount-item p {
        font-size: 0.85rem;
        color: #6e6e73;
        margin: 0 0 5px;
    }

    .discount-item strong {
        font-size: 1rem;
        color: #1d1d1f;
        font-weight: 600;
    }

    .discount-info h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1d1d1f;
        margin-bottom: 10px;
    }

    .discount-info p {
        font-size: 0.9rem;
        color: #6e6e73;
        line-height: 1.5;
        margin: 0;
    }

    @media (max-width: 768px) {
        .discount-block {
            padding: 15px;
        }

        .discount-block h2 {
            font-size: 1.3rem;
        }

        .discount-table {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 8px;
        }

        .discount-item p {
            font-size: 0.8rem;
        }

        .discount-item strong {
            font-size: 0.9rem;
        }

        .discount-info h3 {
            font-size: 1.1rem;
        }

        .discount-info p {
            font-size: 0.85rem;
        }

        .exempel {
            display: grid;
            margin: auto;
            grid-template-columns: auto;
            width: 100%;
            align-items: center;
        }
    }


    .faq-section {
        padding: 40px 20px;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .section-heading {
        font-size: 1.1rem;
        font-weight: 600;
        color: #6e6e73;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1d1d1f;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        color: #6e6e73;
        max-width: 600px;
        margin: 0 auto 20px;
    }

    .accordion-item {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        border-radius: 10px;
        margin-bottom: 10px;
        padding: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .accordion-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    }

    .accordion-item.active .item-text {
        display: block;
    }

    .accordion-item.active .item-title::after {
        transform: rotate(180deg);
    }

    .item-title {
        font-size: 1rem;
        font-weight: 600;
        color: #1d1d1f;
        margin: 0;
        position: relative;
        padding-right: 30px;
    }

    .item-title::after {
        content: '\f078';
        /* Font Awesome chevron-down */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        color: #3eb764;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }

    .item-text {
        display: none;
        font-size: 0.9rem;
        color: #6e6e73;
        margin-top: 10px;
        text-align: left;
        line-height: 1.5;
    }

    .btn-blue.root {
        display: inline-block;
        font-size: 1.1rem;
        padding: 10px 20px;
        background: linear-gradient(135deg, #3eb763, #35ac59);
        font-weight: 600;
        border-radius: 5px;
        margin-bottom: 0;
    }

    .root_border {
        padding: 3px;
        border: 1px solid #37ac5961;
        display: inline-flex;
        border-radius: 7px;
        background: #37ae5b54;
        margin-left: 20px;
    }

    .hero-title {
        line-height: 1.2;
    }

    .slide-details p {
        color: #000;
    }

    .hero {
        min-height: 75vh;
    }

    div#email {
        margin-bottom: 0;
    }

    div#pay {
        margin-left: 20px;
    }

    @media (max-width: 768px) {
        .faq-section {
            padding: 30px 15px;
        }

        .section-heading {
            font-size: 1rem;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .section-subtitle {
            font-size: 0.9rem;
        }

        .accordion-item {
            padding: 12px;
        }

        .item-title {
            font-size: 0.95rem;
        }

        .item-text {
            font-size: 0.85rem;
        }

        table.Table-body {
            margin: 0 10px;
        }

        .header-contact-block {
            padding: 10px !important;
        }

        .form-group {
            padding: 0 10px !important;
        }

        .btn-blue.root {
            margin-left: 0px;
        }

        .root_border {
            margin-left: 0;
        }

        div#pay {
            margin-left: 0px;
        }

        .slide-details h3 {
            margin-top: 10px;
        }

    }


        .seo-section {
        padding: 40px 0;
        background: #FFFFFF;
    }

    .seo-content {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 16px;
        width: 100%;
    }

    .seo-content h1 {
        font-family: 'Inter', sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #1A1A1A;
        line-height: 1.3;
        margin-bottom: 24px;
        text-align: center;
    }

    .seo-content h2 {
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: #1A1A1A;
        margin: 32px 0 16px;
        line-height: 1.3;
    }

    .seo-content p {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #1A1A1A;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .seo-list {
        list-style: none;
        padding: 0;
        margin: 16px 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .seo-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #1A1A1A;
        line-height: 1.6;
        position: relative;
        padding-left: 24px;
    }

    .seo-list li::before {
        content: '•';
        color: #007AFF;
        font-size: 20px;
        position: absolute;
        left: 0;
        top: 2px;
    }

    .seo-list .highlight {
        font-weight: 600;
        color: #000000;
        background: transparent;
        display: contents;
        margin: 0;
        padding: 0;
    }

    .seo-reviews {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 16px 0;
    }

    .seo-review {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .review-text {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        color: #6C757D;
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .review-author {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        color: #1A1A1A;
        font-weight: 600;
        text-align: right;
    }

    @media (max-width: 768px) {
        .seo-content h1 {
            font-size: 28px;
        }

        .seo-content h2 {
            font-size: 20px;
        }

        .seo-content p,
        .seo-list li {
            font-size: 14px;
        }

        .seo-section {
            padding: 32px 0;
        }
    }

    @media (max-width: 600px) {
        .seo-content h1 {
            font-size: 24px;
        }

        .seo-content h2 {
            font-size: 18px;
        }

        .seo-content p,
        .seo-list li {
            font-size: 12px;
        }

        .review-text,
        .review-author {
            font-size: 12px;
        }
    }