/* Impressum page specific styles */
body{
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    background: url('../res/cover-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    overflow-y: auto;
    padding-bottom: 70px; /* Platz für Footer */
}

/* Tabs (same look as other subpages) */
.tabs {
    display: flex;
    justify-content: center; /* 水平居中 */
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    background: #f1f1f1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tab {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 25px;
    background: #e6e6e6;
    transition: background 0.3s ease, color 0.3s ease;
}

.tab:hover {
    background: #388e3c;
    color: #fff;
}

.tab.active {
    background: #ff7b7b;
    color: #fff;
}

/* Content */
.page-container{
    max-width: 900px;
    margin: 30px auto;
    padding: 22px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.page-container h1{
    margin-top: 0;
}

.page-container h2{
    margin-top: 22px;
}
