/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
/* #f4f4f4; light grayish shade*/
/* #007bff vibrant blue*/
/* Navbar Styling */
.navbar {
    background-color: #003366; 
    padding: 5px 0;
    text-align: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    line-height: 2.75;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar li {
    display: inline;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
}

.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Section Styling */
.container {
    padding: 40px;
    text-align: center;
}

section {
    background: white;
    margin: 20px auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
}

h2 {
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 18px;
    padding: 8px 0;
}
