/* Navbar and Footer Styles (Unchanged) */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

nav .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #008080; /* Teal */
}

nav .menu {
    display: flex;
    gap: 20px;
}

nav .menu a {
    font-size: 1em;
    color: #333;
}

nav .menu a:hover {
    color: #ff7f50; /* Coral */
}
