* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #fafafa;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.spacer-24 {
    height: 24px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-address {
    margin-top: 10px;
}

.top-bar {
    background-color: #1a252c;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: #f05a30;
    transition: 0.2s;
}

.contact-btn {
    background: #f05a30;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
}

.contact-btn:hover {
    background: #1a252c;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1a252c;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary {
    background: #f05a30;
    color: #fff;
}

.btn-primary:hover {
    background: #d94b24;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-dark {
    background: #1a252c;
    color: #fff;
}

.card,
.trust-card,
.contact-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.page-header {
    background-color: #f4f5f7;
    padding: 40px 0;
    border-bottom: 1px solid #eaeaea;
}

.page-header h2 {
    font-size: 2.2rem;
    color: #1a252c;
}

section {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a252c;
}

.subtitle {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 50px;
}

.global-presence {
    background-color: #fff;
    padding: 80px 0;
}

.presence-top {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.presence-text {
    flex: 1;
    text-align: left;
}

.presence-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.presence-text p {
    font-size: 1.1rem;
    color: #6b7280;
}

.presence-map {
    flex: 1.2;
}

.presence-map img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.region-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a252c;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}

.region-card p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 65px;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #333;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a252c;
    font-weight: bold;
}

footer {
    background: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid #eaeaea;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #1a252c;
}

.footer-col p,
.footer-col a {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #f05a30;
}

.disclaimer {
    border-top: 1px solid #eaeaea;
    padding-top: 30px;
    margin-top: 20px;
    text-align: left;
}

.disclaimer h5 {
    font-size: 0.9rem;
    color: #1a252c;
    margin-bottom: 10px;
}

.disclaimer p {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    font-size: 0.85rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .navbar h1 {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links a {
        display: block;
        padding: 14px 20px;
        width: 100%;
        border-bottom: 1px solid #eaeaea;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .presence-top {
        flex-direction: column;
    }

    section {
        padding: 50px 0;
    }

    section h3 {
        font-size: 1.6rem;
    }
}