.navik-header {
    padding: 0px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-center {
    display: flex;
    flex-direction: row;
    flex: 1;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    margin-right: 20px;
}

.phone-link i {
    margin-right: 8px;
    color: #c0441e;
}

.logo {
    max-width: 150px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .promo-section {
        padding: 40px 0;
    }

    .promo-content h2 {
        font-size: 1.8rem !important;
    }

    .promo-content p {
        font-size: 1rem !important;
        padding: 0 15px;
    }
}

.loader-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #c0441e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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

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

.loader-content p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.flag-image {
    width: 300px;
    height: auto;
    margin-top: -40px;
}

.mobile-flag {
    display: none;
}

@media (max-width: 768px) {
    .desktop-flag {
        display: none;
    }

    .flag-image {
        width: 150px;
        margin-top: -50px;
    }

    .mobile-flag {
        display: block;
    }

}

.abox-4-ico-img {
    width: 80px;
    height: 80px;
}