html {
    margin: 0;
    padding: 0;
    width: 100%;
    /* ✅ FIXED (was 75%) */
}

/* PAGE */
body {
    margin: 0;
    padding: 0;
    background-color: #222;
    font-family: "Inter", Arial, sans-serif;
    color: #222;
}

/*CENTERED PAGE */
#content {
    width: 100%;
    margin: 0 auto;


    background-color: #efefef;
    border: 1px solid #777;
    box-sizing: border-box;
}

/* HEADER */
header {
    display: grid;
    grid-template-columns: 150px auto;
    background-color: black;
}

.logo {
    height: 80px;
    display: block;
}

/* NAV */
nav {
    display: flex;
    background-color: black;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    border-left: 2px solid #76B900;
}

nav a {
    text-align: center;
    background-color: #141414;
    color: white;
    text-decoration: none;
    height: 80px;
    display: flex;
    transition: background-color 0.5s;
    flex: 1;
    justify-content: center;
    align-items: center;
    border-left: 2px solid #76B900;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: bold;
}

nav a:hover {
    background-color: #76B900;
    color: white;
}

/* TITLE BOX */
.title-box {
    width: 320px;
    margin: 12px auto 10px auto;
    border: 2px solid black;
    text-align: center;
    background-color: #efefef;
    padding: 10px 12px;
}

.page-label {
    margin: 0 0 3px 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.title-box h1 {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
}

/* DIVIDER */
.divider {
    border-top: 2px dashed #b7b7b7;
    margin: 12px 20px;
}

/* IMAGE SECTION */
.image-section {
    border: 1px solid #76B900;
    background-color: black;
    margin: 0 0 14px 0;
    padding: 10px 20px 14px 20px;
}

.image-bar {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    width: 100%;
    border: 1px solid #8a8a8a;
    background-color: #141414;
    margin: 0 auto 14px auto;
}

.image-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #141414;
    color: white;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 0;
    border-right: 2px solid #76B900;
}

.image-label:hover {
    background-color: #76B900;
}

.image-description {
    background-color: #141414;
    color: white;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 10px 15px;
}

/* IMAGE */
.image-box {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;

    border: 2px solid #9a9a9a;
    background-color: #76B900;
    padding: 8px;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* TEXT */
.text-section {
    text-align: center;
    padding: 0 20px;
}

.text-section h2 {
    margin: 0 0 12px 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
}

.text-section ol {
    display: inline-block;
    text-align: left;
    margin: 0 auto 20px auto;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

/* TABLE SECTION */
.table-section {
    padding: 0 36px;
    margin-top: 20px;
    margin-bottom: 12px;
    text-align: left;
}

.table-section h2 {
    margin-bottom: 10px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* TABLE */
.table-section table {
    border-collapse: collapse;

    width: 800px;

    margin-left: 0;

    background-color: #efefef;
    border: 2px solid #76B900;
}

.table-section th,
.table-section td {
    border: 1px solid #76B900;
    padding: 10px 14px;

    font-size: 15px;
    text-align: center;
    background-color: #efefef;
}

.table-section th {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
}

/* FOOTER */
footer {
    background-color: #141414;
    color: white;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 20px;
}

.footer-item {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.footer-divider {
    width: 2px;
    height: 40px;
    background-color: #76B900;
}

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

    #content {
        width: 100%;
    }

    header {
        grid-template-columns: 1fr;
    }

    .logo {
        margin: 10px auto;
    }

    nav {
        flex-direction: column;
        border-left: none;
    }

    nav a {
        border-left: none;
        border-top: 2px solid #76B900;
        padding: 14px 0;
        height: auto;
    }

    .image-box {
        width: 95%;
    }

    .table-section {
        padding: 0 14px;
    }

    .table-section table {
        width: 100%;
    }

    footer {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 8px;
    }

    .footer-divider {
        display: none;
    }
}