body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b1220;
    color: #fff;
}

/* GENERAL CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    padding: 20px 0;
    background: #0e1729;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 180px;
}

.title-box h1 {
    margin: 0;
    font-size: 28px;
}

.subtitle {
    margin-top: 4px;
    font-size: 16px;
}

.lang-switch {
    font-size: 16px;
}

/* NAVIGATION MENU */
.nav {
    background: #0c1624;
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* HERO SECTION */
.hero {
    padding: 120px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* SERVICES, ABOUT, INVESTORS */
.info {
    max-width: 900px;
    margin: 80px auto;
}

.content-block {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

.content-block.alt {
    background: #111b2f;
    border-radius: 8px;
}

/* CONTACT FORM */
.clean-contact {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-align: left;
}

.contact-info {
    margin-bottom: 40px;
    font-size: 18px;
    color: #cdd3de;
}

.contact-form label {
    font-size: 16px;
    color: #cdd3de;
    margin-top: 15px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #2a3b52;
    background: #0c1624;
    color: #fff;
    margin-top: 6px;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    background: #1a73e8;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-submit:hover {
    background: #1459b3;
}

/* FOOTER */
.footer {
    margin-top: 50px;
    padding: 20px;
    background: #0e1729;
    text-align: center;
    color: #9bb1cf;
    font-size: 14px;
}
