.international_partners_main {
    background-color: var(--secondary1-background-color);
    padding-top: 2%;
    padding-bottom: 2%;
}

.worldwide-presence-container {
    max-width: 1600px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    color: #fff;
    padding: 50px 5%;
}

.worldwide-text {
    max-width: 40%;
}

.worldwide-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.worldwide-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.world-map {
    max-width: 55%;
    position: relative;
}

.world-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .worldwide-presence-container {
        flex-direction: column;
        text-align: center;
    }

    .worldwide-text,
    .world-map {
        max-width: 100%;
    }

    .worldwide-text h2 {
        font-size: 2rem;
    }

    .worldwide-text p {
        font-size: 1rem;
    }
}