/* =======================
   General Styles
   ======================= */

   body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;           /* white background */
    color: #111;                         /* dark text */
}

/* =======================
   HEADER
   ======================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f2f2f2;          /* light gray */
    padding: 20px;
    color: #111;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
}

header h1 img {
    width: 50px;
    height: auto;
}

/* =======================
   NAVIGATION
   ======================= */

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #333;                         /* dark nav text */
    display: flex;
    align-items: center;
}

nav ul li a img {
    width: 30px;
    height: auto;
    margin-right: 8px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* =======================
   MAIN CONTENT
   ======================= */

main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.moreboxes {
    flex: 1 1 calc(25% - 20px);               /* 4 per row */
    background-color: #f9f9f9;               /* light background */
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #111;
}

.moreboxes img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.moreboxes h2 {
    font-size: 24px;
    margin: 10px 0;
}

.moreboxes p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 15px 0;
    text-align: justify;
}

/* =======================
   FOOTER
   ======================= */

footer {
    background-color: #f2f2f2;
    color: #333;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #ddd;
}

/* =======================
   Navigation Buttons
   ======================= */
   .nav-btn {
    background-color: #ffcc00;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: #ffaa00;
}
