/* ===== Find Us Around The World Section ===== */

.find-us-section {
    background-color: white;
}

.find-us-section h2 {
    color: #000;
    font-size: 25px;
    font-weight: 700;
}

.find-us-section p {
    color: #666666;
    font-size: 18px;
    line-height: 21px;
}

.find-us-section .red-button {
    background-color: var(--ct-red);
    color: white;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.find-us-section .red-button:hover {
    background-color: var(--ct-red-dark);
    color: white;
}

.find-us-section img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .find-us-section {
        text-align: center;
    }

    .find-us-section .find-us-button {
        margin-top: 20px !important;
    }
}

@media (max-width: 575px) {
    .find-us-section h2 {
        font-size: 20px;
    }

    .find-us-section p {
        font-size: 16px;
    }
}
