/* ===== Global ===== */
body {
    font-family: Arial, sans-serif;
    background-color: rgb(169, 184, 218);
    margin: 0;
    min-height: 100vh;
}

/* ===== Header ===== */
header h1 {
    text-align: center;
    margin: 20px 0;
}

/* ===== Navigation ===== */
.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: rgba(165, 99, 42, 0.253);
    padding: 0;
    margin: 0;
}

.navbar a {
    color: rgb(97, 77, 53);
    text-decoration: none;
    padding: 15px 20px;
    display: block;
}

.navbar a:hover {
    background-color: rgb(104, 136, 108);
}


main {
    max-width: 900px;
    margin: 40px auto;     /* centers the content */
    padding: 20px 30px;    /* space inside the box */
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
}


section {
    margin-bottom: 40px;
}

section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: rgb(60, 90, 70);
}

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 15px;
    background-color: rgba(165, 99, 42, 0.2);
}

p {
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact {
    text-align: center;
}

.image-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px auto;
}

.image-row img {
    width: 25%;
    height: auto;
}