/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #f4f7fb;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
header {
    background: #0b3d91;
    color: white;
    padding: 15px 0;
}

header h2 {
    display: inline;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0b3d91, #1e73be);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Button */
.btn-primary {
    background: #ffcc00;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}

/* Sections */
section {
    padding: 60px 0;
    background: white;
    margin-bottom: 10px;
}

section h2 {
    margin-bottom: 20px;
    color: #0b3d91;
}

ul {
    margin-top: 15px;
}

ul li {
    margin-bottom: 10px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step {
    background: #f4f7fb;
    padding: 20px;
    border-radius: 8px;
}

/* CTA */
.cta {
    text-align: center;
    background: #0b3d91;
    color: white;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}
