.padding-section-s {
    padding: 60px 0;
    background: #f8f9fa;
}

.form-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4fd1c7;
    text-align: center;
    margin-bottom: 40px;
}

.bg-color-white-nochange {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-bottom: 20px;
}

.select-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-bottom: 20px;
}

label.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

label.form-checkbox .form-checkbox-icon {
    width: 18px;
    height: 18px;
    margin: 0;
    flex: 0 0 18px;
}

.form-checkbox-label {
    display: inline;
    margin: 0;
    line-height: 1;
}

.button-primary {
    background-color: #4fd1c7;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #38b2ac;
}

.submit-button {
    background-color: #4fd1c7;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #38b2ac;
}

.field-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #e53e3e;
}

.input-block {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* 
.iti {
    width: 100%;
}

.iti__flag-container {
    width: 50px;
}

.iti__selected-flag {
    width: 50px;
    height: 46px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.iti__flag {
    height: 20px;
    width: 28px;
}

.iti__country-list {
    width: auto !important;
    min-width: 260px;
    max-width: 520px;
    box-sizing: border-box;

    border: 1px solid #e2e8f0;
    border-radius: 0 4px 4px 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 480px) {
    .iti__country-list {
        left: 8px !important;
        right: 8px !important;
        min-width: unset;
        max-width: unset;
        width: auto !important;
    }
}

.iti__country {
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

.iti__country-name {
    margin-left: 10px;
}

.iti__dial-code {
    margin-left: auto;
    padding-right: 10px;
}
*/

.global-section {
    margin-top: 40px;
}

.global-presence,
.global-leaders {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.global-icon {
    font-size: 2rem;
    color: #4fd1c7;
    margin-right: 20px;
}

.global-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4fd1c7;
    margin-bottom: 10px;
}

.global-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.learn-more-btn {
    background-color: #4fd1c7;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #38b2ac;
}

@media (max-width: 992px) {
    .global-section {
        margin-top: 20px;
    }

    .global-presence,
    .global-leaders {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .global-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Ensure Flags and Width are correct */
.iti {
    width: 100% !important;
    margin-bottom: 20px;
}

.iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/img/flags.png") !important;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/img/flags@2x.png") !important;
    }
}

.iti__selected-flag {
    padding-left: 15px !important;
}

.iti__country-list {
    z-index: 1000 !important;
}

/* RTL Support for International Phone Input */
[dir="rtl"] .iti {
    direction: ltr !important;
}

[dir="rtl"] .iti__flag-container {
    left: auto !important;
    right: 0 !important;
}

[dir="rtl"] .iti input.phone,
[dir="rtl"] .iti input[type=tel] {
    padding-right: 52px !important;
    padding-left: 12px !important;
    text-align: right !important;
    direction: rtl !important;
}

[dir="rtl"] .iti__selected-flag {
    padding-right: 15px !important;
    padding-left: 6px !important;
    flex-direction: row-reverse !important;
}

[dir="rtl"] .iti__country-list {
    text-align: right !important;
    right: 0 !important;
    left: auto !important;
}

[dir="rtl"] .iti__flag-box {
    margin-right: 0 !important;
    margin-left: 6px !important;
}

[dir="rtl"] .iti__arrow {
    margin-left: 0 !important;
    margin-right: 6px !important;
}

/* Dark Mode for Country Dropdown */
body.dark-mode .iti__country-list {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #fff !important;
}

body.dark-mode .iti__country {
    color: #e2e8f0 !important;
}

body.dark-mode .iti__country:hover,
body.dark-mode .iti__country.iti__highlight {
    background-color: #334155 !important;
    color: #fff !important;
}

body.dark-mode .iti__dial-code {
    color: #cbd5e1 !important;
}