
body {
    margin: 0;
    font-family: "Georgia", serif;
    background-color: #f7f2e8;
    color: #1e2a3d;
}

/* HERO */
.hero {
    width: 100%;
    height: 520px;
    background-image: url("images/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-yellow {
    background-color: #f2c94c;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.btn-outline {
    border: 2px solid white;
    padding: 10px 26px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* MISSION */
section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.mission p {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #0b1b33;
    color: white;
    text-align: center;
    padding: 25px 10px;
    margin-top: 40px;
}
``
