* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #1f2933;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.hero {
    background: linear-gradient(135deg, #0b3c5d, #1d6fa5);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.hero-text {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.primary {
    background-color: #fbbf24;
    color: #000;
}

.secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.section {
    padding: 60px 0;
}

.section.light {
    background-color: #f5f7fa;
}

h2 {
    margin-bottom: 20px;
    color: #0b3c5d;
}

.list, .steps {
    margin-left: 20px;
    margin-bottom: 20px;
}

.list li, .steps li {
    margin-bottom: 10px;
}

.highlight {
    font-weight: bold;
    color: #0b3c5d;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.note {
    font-size: 0.9rem;
    color: #555;
}

.footer {
    background: #0b3c5d;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}
