/* ===== HEADER & NAVIGATION ===== */
#AK-Header {
    background-color: #001121; /* Dark blue/black background */
    color: white;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#AK-Header h1 {
	color: white;
    font-size: 60px;
    margin: 0;
    font-weight: 700; /* Poppins Bold */
}

#AK-Nav {
    background-color: #67A40A; /* Primary green */
    margin: 0 auto;
    padding: 15px 0;
}

#AK-Nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

#AK-Nav ul li a {
    text-decoration: none;
    color: #001121; /* Dark blue/black text */
    padding: 15px;
    font-weight: 300; /* Poppins Light */
    font-size: 18px;
}

#AK-Nav ul li a:hover {
    background-color: #001121; /* Dark blue/black on hover */
    color: white;
}

/* Global Styles */
* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-size: 90%; /* 10% smaller base font size */
}
body {
    margin: 0;
    padding: 0;
    background-color: #DDD9D9;
}