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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

:root {
    --black: #000;
    --white: #fff;
    --gray: #e5e5e5;
}

.container {
    width: 100%;
    padding: 0 5px;
}

.nav-container {
    padding: 0 20px;
}

header {
    border-bottom: 1px solid var(--gray);
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-weight: bold;
    font-size: 1.1rem;
}

.nav-links a {
    margin-left: 20px;
    font-size: 0.95rem;
}

/* ===== HERO ===== */
.hero {
    margin-top: 5px;
    border-bottom: 1px solid var(--gray);
    padding: 0;
}

.hero-wrapper {
    position: relative;
    height: 480px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.hero-title {
    font-size: 2.3rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 18px;
    margin-bottom: 10px;
}

.hero-call {
    font-size: 1.4rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 10px 18px;
}

/* ===== GENERIC SECTIONS ===== */
section {
    padding: 64px 0;
    border-bottom: 1px solid var(--gray);
}

/* ===== SPLIT ROW LAYOUT ===== */
.split-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.split-title {
    font-size: 1.6rem;
    font-weight: bold;
}

.split-text {
    font-size: 1rem;
    color: #222;
}

/* ===== CTA ===== */
.cta {
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta a {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 22px;
    border: 1px solid var(--white);
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    color: #ddd;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 20px;
}

.footer-nav a {
    margin-right: 16px;
}

.copyright {
    font-size: 0.8rem;
    color: #aaa;
}
