/* GENERAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #7ecbff, #e0aaff);
}

.container {
    max-width: 900px;
    width: 90%;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: center;
}

/* NAVBAR - SLIM & CLEAN */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(30, 58, 138, 0.75);
    backdrop-filter: blur(6px);
    padding: 6px 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-container {
    width: 92%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.3px;
}

/* Desktop menu */
.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 10px;
    transition: background 0.15s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
}

/* Active page */
.nav-links a.active {
    background: white;
    color: #1E3A8A;
}

/* Hamburger icon */
.menu-icon {
    display: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
}

/* Banner */
.banner {
    background: #fde047;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

/* Sections */
.section {
    margin-top: 40px;
    scroll-margin-top: 70px;
}

h1 {
    font-size: 36px;
}

h2 {
    margin-top: 20px;
}

p {
    line-height: 1.6;
}

/* Buttons */
button {
    background: #1E3A8A;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
}

button:hover {
    background: #162d6b;
}

/* Logo on home page */
.home-logo {
    width: 280px;
    max-width: 80%;
    height: auto;
    margin: 20px auto;
    display: block;
}

/* About page photos */
.about-photo {
    width: 220px;
    height: auto;
    border-radius: 12px;
    margin: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.photo-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* Tables */
table {
    margin: auto;
    border-collapse: collapse;
    width: 70%;
}

th, td {
    padding: 12px;
    border: 1px solid #ccc;
}

/* Forms */
input, textarea, select {
    padding: 10px;
    width: 60%;
    margin-top: 5px;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 48px;
        left: 0;
        width: 100%;
        background: rgba(30, 58, 138, 0.95);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.show {
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-links a {
        display: block;
        margin: 10px 0;
        font-size: 16px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    img {
        width: 100%;
        max-width: 250px;
        height: auto;
    }

    .photo-row {
        flex-direction: column;
        align-items: center;
    }

    table {
        width: 100%;
        font-size: 14px;
    }

    input, textarea, select {
        width: 90%;
    }

    button {
        width: 90%;
    }
}
.checkbox-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 10px auto;
    text-align: left;
}

.checkbox-container input {
    margin-top: 4px;
}