body {

    font-family: Segoe UI, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {

    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {

    background: #0F4C81;
    color: white;
    padding: 20px 0;
}

header .container {

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

.logo {

    font-size: 1.4rem;
    font-weight: bold;
}

nav ul {

    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {

    color: white;
    text-decoration: none;
}

nav a.active {

    color: #ffffff;
    font-weight: 700;
    border-bottom: 2px solid #ffffff;
}

.status-banner {

    background: #FFF2CC;
    color: #333;
    text-align: center;
    padding: 12px;
}

.hero {

    background: linear-gradient(
        135deg,
        #0F4C81,
        #4F81BD
    );

    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {

    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {

    margin-bottom: 30px;
    font-size: 1.2rem;
}

.btn {

    background: white;
    color: #0F4C81;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
}

.section {

    padding: 80px 0;
}

.section h2 {

    margin-bottom: 30px;
    color: #0F4C81;
}

.light {

    background: #F7FAFC;
}

.cards {

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

.card {

    background: white;
    border-left: 5px solid #4F81BD;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.steps {

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.step {

    background: #EAF3FB;
    padding: 20px;
    border-radius: 5px;
}

form {

    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {

    padding: 12px;
    border: 1px solid #ccc;
}

button {

    background: #0F4C81;
    color: white;
    border: none;
    padding: 14px;
    cursor: pointer;
}

footer {

    background: #0F4C81;
    color: white;
    text-align: center;
    padding: 20px;
}