* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    min-height: 100vh;
}


/* ── Navigation ── */

nav {
    background-color: #2c3e50;
    padding: 0 30px;
    display: flex;
    align-items: center;
    min-height: 60px;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #EE3668;
}

/* ── Header ── */

header {
    background-color: #f8f9fa;
    border-bottom: 3px solid #EE3668;
    padding: 0 30px;
    width: 100%;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-container img {
    max-height: 42px;
    width: auto;
    display: block;
}

.header-text h1 {
    font-size: 1.25em;
    margin-bottom: 1px;
    font-weight: 700;
    color: #EE3668;
    letter-spacing: 0.5px;
}

.header-text p {
    font-size: 0.8em;
    font-weight: 300;
    color: #2c3e50;
}

/* ── Hero / Welcome Section ── */

.welcome-section {
    width: 100%;
    background-image: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.15) 100%), url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.welcome-text {
    text-align: left;
    max-width: 580px;
}

.welcome-text .company-tag {
    display: block;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 3px;
    color: #53C4C8;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.welcome-text h1 {
    font-size: 2.6em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.25;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
}

.welcome-text p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.hero-contact {
    font-size: 0.95em !important;
    margin-bottom: 32px !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

.hero-contact a {
    color: #53C4C8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.hero-contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: #EE3668;
    color: white;
}

.cta-primary:hover {
    background-color: #AA1D3F;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(238, 54, 104, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid #53C4C8;
}

.cta-secondary:hover {
    background-color: #53C4C8;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* ── Content Sections ── */

.section {
    width: 100%;
    padding: 60px 0;
    background-color: #f7fbfc;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-box,
.legal-box {
    padding: 28px 30px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(83, 196, 200, 0.2);
    border-left: 4px solid #53C4C8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-box:hover,
.legal-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.contact-box h3,
.legal-box h3 {
    color: #2c3e50;
    margin-bottom: 16px;
    font-size: 1.05em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf6f8;
}

.contact-box p,
.legal-box p {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95em;
}

.contact-box strong,
.legal-box strong {
    color: #2c3e50;
    font-weight: 600;
}

/* ── Footer ── */

footer {
    background-color: #2c3e50;
    padding: 0 30px;
    min-height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer p {
    font-size: 0.95em;
    font-weight: 500;
    color: #ffffff;
}

/* ── Language Switch ── */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85em;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.lang-btn.active {
    background-color: #EE3668;
    border-color: #EE3668;
    color: #ffffff;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 0;
    }

    header {
        justify-content: center;
    }

    .contact-grid,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .welcome-section {
        min-height: auto;
    }

    .hero-inner {
        padding: 50px 20px;
    }

    .section {
        padding: 40px 0;
    }

    .section-inner {
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
    }
}
