* {
    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{
    text-align: center;
}
nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* HERO */
.hero {
    background: url('images/banner.jpg') no-repeat center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero button {
    padding: 10px 20px;
    border: none;
    background: #00a8ff;
    color: white;
    cursor: pointer;
}

/* SECTIONS */
section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* STATS */
.stats {
    background: #0a2a43;
    color: white;
    text-align: center;
}

.stats h3 {
    font-size: 28px;
}

/* CTA */
.cta {
    background: #00a8ff;
    color: white;
    text-align: center;
}

.cta button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: white;
    color: #00a8ff;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #111;
    color: #ccc;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

footer h3, footer h4 {
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
}
.small-hero {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 12px;
    border: none;
    background: #00a8ff;
    color: white;
    cursor: pointer;
}

.contact-info p {
    margin-bottom: 10px;
}

.map {
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}