/* ===== Global ===== */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f8f9fb;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.header {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid #eaeaea;
}

.logo {
    height: 40px;
}

/* ===== Navigation ===== */
.nav {
    margin-top: 10px;
}

.nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav a:hover {
    color: #0a58ca;
}

/* ===== Hero ===== */
.hero {
    padding: 80px 0 60px 0;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 650px;
    color: #555;
}

/* ===== Sections ===== */
.section {
    padding: 60px 0;
}

.section h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.section ul {
    padding-left: 20px;
}

.section li {
    margin-bottom: 10px;
}

/* ===== Footer ===== */
.footer {
    padding: 30px 0;
    background: #111;
    color: #aaa;
    font-size: 14px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

