/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #2d2e82; /* Dunkelblau */
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.logo h1 {
    margin: 0;
    font-size: 2.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 15px;
    transition: background 0.3s ease-in-out;
}

nav ul li a:hover {
    background-color: #4a4abb; /* Lila */
    border-radius: 5px;
}

#hero {
    background: linear-gradient(to right, #4a4abb, #2d2e82); /* Blau-Lila-Verlauf */
    color: white;
    padding: 100px 20px;
    text-align: center;
}

#hero h2 {
    font-size: 2.5rem;
}

#hero p {
    font-size: 1.2rem;
}

section {
    padding: 50px 20px;
}

h3 {
    font-size: 1.8rem;
    color: #2d2e82;
    margin-bottom: 20px;
}

ul {
    list-style: disc;
    margin-left: 20px;
}

footer {
    background-color: #2d2e82;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
}

footer a:hover {
    color: #4a4abb;
    border-bottom-color: #4a4abb;
}
