@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-info-bar {
    background-color: #184382;
    padding: 60px 0;
}

.info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    animation: fadeInUp 1s ease-out;
}

.border-divider {
    border-left: none;
}

.quick-info-bar .icon-box {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    width: 45px !important;
    height: 44px !important;
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quick-info-bar .icon-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
}

.info-item .label {
    margin-bottom: 4px;
}

.info-item .value {
    margin: 0;
}


.info-item .value {
    font-size: 20px; 
    font-weight: 400;
    line-height: 32px;
}


@media (min-width: 768px) and (max-width: 1024px) {
    .contact-header-container {
        padding: 0 24px !important;
    }
}


@media (max-width: 767px) {
    .contact-header-container {
        padding: 0 24px !important;
    }

    .quick-info-bar {
        padding: 24px 0 !important;
    }

    .info-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        gap: 32px !important;
        padding: 40px 20px !important;
    }

    .info-item {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .info-item.border-divider {
        border-left: none !important;
        border-top: none !important;
        padding-top: 0 !important;
        padding-left: 0 !important;
    }

    .info-item .icon-box {
        margin-bottom: 8px !important;
    }
}