/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f8f8f8;
    color: #333;
}
.container {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
align-items: left;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #004080;
    color: white;
    padding: 1rem 2rem;
}
.logo {
    font-size: 1rem;
    font-weight: bold;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1em;
}
.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.nav-toggle {
    display: none;
    font-size: 1rem;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: #004080;
        width: 200px;
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    background: #e0ecff;
    padding: 4rem 2rem;
    text-align: left;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer {
    background: #222;
    color: #fff;
    padding: 2rem 1rem;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    color: #fff;
}
.footer-links {
    margin-bottom: 1rem;
     color: #fff;
} 
.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #fff;
}
.footer p {
    font-size: 0.85rem;
    color: #fff;
}


