/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

/* Header */
header {
    background-color: #99a5c9;
    color: white;
    padding: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
}

/* Sections */
section {
    margin: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #99a5c9;
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
/* Dropdown Menu - Move to the Right */
nav {
    display: flex;
    justify-content: flex-end; /* Moves menu to the right */
    padding-right: 20px;
}

.dropdown {
    position: relative;
}

.dropbtn {
    text-decoration: none;
    background-color: #99a5c9;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0; /* Moves dropdown menu to the right */
    background-color: white;
    min-width: 160px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    display: block;
    color: black;
    padding: 10px;
    text-decoration: none;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show dropdown when hovering */
.dropdown:hover .dropdown-content {
    display: block;
}
/* Fix Header Banner Height */
header {
    background-color: #99a5c9;
    color: white;
    padding: 10px; /* Reduce padding */
    height: 50px; /* Set a fixed height */
    display: flex;
    align-items: center; /* Center text vertically */
    justify-content: space-between;
}

h1 {
    font-size: 24px; /* Reduce text size slightly */
    margin-left: 20px;
}
/* Logo Styling - Fix Size */
.logo {
    height: 40px; /* Adjust this value if needed */
    width: auto; /* Keeps the correct aspect ratio */
    margin-left: 20px;
    max-width: 150px; /* Prevents it from getting too big */
}
/* Footer Styles */
footer {
    background-color: #99a5c9;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

.footer-links {
    margin-top: 5px;
}

.footer-links a {
    color: #1d1f26;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}
