body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333; /* Hintergrund bleibt wie vorher */
}

header img {
    max-width: 150px;
    height: auto;
}

header .button-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    background-color: #F7771D;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header .button-link:hover {
    background-color: #e65500; /* Dunkleres Orange beim Hover */
}

main {
    padding: 20px;
    text-align: center;
}

h1, h2 {
    color: #F7771D;
}

h3, h4 {
    color: #F7771D; /* Einheitliches Design für alle Überschriften */
}

a {
    color: #F7771D;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #F7771D;
    color: #333; /* Dunkler Text */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
}

.button:hover {
    background-color: #e65500;
}

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

.section {
    margin-bottom: 40px;
}

.section h2 {
    border-bottom: 2px solid #F7771D; /* Orange Linie unter den Abschnitten */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

footer {
    margin-top: 20px;
    padding: 10px;
    background-color: #222;
    text-align: center;
    color: #aaa;
}

footer a {
    color: #F7771D;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
