/* impressum.php - Impressum Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f7f9f5;
    color: #111;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.scroll {
    min-height: 100vh;
    background-color: #f7f9f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
    padding-bottom: 40px;
    margin-top: 30px;
}

/* Header */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.title {
    font-size: 30px;
    font-weight: 400;
    color: #111;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    max-width: 320px;
    margin-bottom: 10px;
}

/* Back Button */
.back-button {
    margin-bottom: 20px;
    width: 100%;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #829a81;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: #5f7360;
    transform: translateX(-3px);
}

.back-link::before {
    content: "←";
    margin-right: 8px;
    font-size: 18px;
}

/* Impressum Card */
.impressum-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    border: 1.3px solid #d5dfd9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.impressum-section {
    margin-bottom: 28px;
}

.impressum-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 22px;
    font-weight: 500;
    color: #829a81;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef3ec;
}

.info-block {
    margin-bottom: 20px;
}

.info-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
    font-weight: 500;
}

.info-content {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.info-content a {
    color: #829a81;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.info-content p {
    margin: 0;
}
