body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: auto;
    padding: 20px 0;
}

nav {
    background: #00509e;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
}

nav ul {
    list-style-type: none;
    margin: 20px 0 0 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

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

header {
    background: linear-gradient(to right, #003366, #00509e);
    color: white;
    padding: 40px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
.tagline {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: #ffffff;
}

section {
    background: white;
    padding: 50px 30px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

ul li {
    padding: 10px 0;
    font-size: 1.1em;
}

a {
    color: #00509e;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background: #003366;
    color: white;
    padding: 20px 0;
    margin-top: auto;
}
