body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* Kopfzeile */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #1e1e1e;
    color: white;
}

.left-buttons a, .left-buttons span {
    margin-right: 12px;
    padding: 8px 14px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.left-buttons a:hover {
    background: #005fcc;
}

/* Hamburger Icon */
.menu-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background: white;
    padding: 8px;
    box-sizing: border-box;
}

/* Menü */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: #2b2b2b;
    color: white;
    padding: 20px;
    box-shadow: -3px 0 10px rgba(0,0,0,0.3);

    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.side-menu.open {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.close-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background: white;
    padding: 8px;
    box-sizing: border-box;
    float: right;
    margin-bottom: 20px;
}

.side-menu a {
    display: block;
    padding: 12px 0;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #444;
}

.side-menu a:hover {
    color: #00aaff;
}

/* Hauptbereich */
.content {
    text-align: center;
    padding: 40px 20px;
}

.content img {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.content p {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Formular */
.form-container {
    max-width: 400px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.form-container button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.form-container button:hover {
    background: #005fcc;
}

/* Fusszeile */
footer {
    background: #1e1e1e;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

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