* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
header {
    background: #0b3a66;
    color: white;
    padding: 15px 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('images/banner.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

/* SECTIONS */
.section {
    padding: 60px 0;
}

.section h2 {
    margin-bottom: 25px;
    color: #0b3a66;
}

.gray {
    background: #f5f7fa;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* CTA */
.cta {
    background: #0b3a66;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta button {
    margin-top: 20px;
    padding: 12px 25px;
    border: none;
    background: #ffcc00;
    font-weight: bold;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
}
/* FORM */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
    font-weight: bold;
}

form input,
form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

form button {
    margin-top: 15px;
    padding: 12px;
    background: #0b3a66;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

form button:hover {
    background: #083055;
}