.logo img {
  max-height: 80px;
}

@media (max-width: 1199.98px) {
    .banner-img-three {
        padding-left: 0;
    }
}
 
   .main-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .head-office {
        text-align: center;
        width: 100%;
    }
    .head-office img {
        width: 100%;
        max-width: 120px;
        height: auto;
    }
    .head-office p {
        margin: 10px 0 0;
        font-size: 18px;
    }
    .branches {
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
    .branch {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 30%;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
    }
    .branch img {
        width: 100%;
        max-width: 100px;
        height: auto;
    }
    .branch p {
        margin: 10px 0 0;
        text-align: center;
        font-size: 16px;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Animation delay for each flag */
    .branch:nth-child(1) {
        animation-delay: 0.2s;
    }
    .branch:nth-child(2) {
        animation-delay: 0.4s;
    }
    .branch:nth-child(3) {
        animation-delay: 0.6s;
    }
    .branch:nth-child(4) {
        animation-delay: 0.8s;
    }
    .branch:nth-child(5) {
        animation-delay: 1s;
    }
    .branch:nth-child(6) {
        animation-delay: 1.2s;
    }
    .branch:nth-child(7) {
        animation-delay: 1.4s;
    }
    .branch:nth-child(8) {
        animation-delay: 1.6s;
    }
    .branch:nth-child(9) {
        animation-delay: 1.8s;
    }
    .branch:nth-child(10) {
        animation-delay: 2s;
    }
    .branch:nth-child(11) {
        animation-delay: 2.2s;
    }