
/* Globales Layout */
body {
    background: #e0e6ef;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header */
.site-header {
    background: #f4f7fb;
    border-bottom: none;
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
}

/* Einleitung */
.intro {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.intro p {
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.4;
    text-align: justify;
    hyphens: auto;
    margin: 0 0 12px 0;
}

/* 2-spaltiges Layout */
.two-column {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.left-column,
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Fokusfelder */
.focus-wrapper {
    background: #e0e6ef;
    border-radius: 8px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.focus-item {
    margin-bottom: 20px;
}

.focus-item:last-child {
    margin-bottom: 0;
}

.focus-title {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: justify;
    hyphens: auto;
    margin: 0 0 12px 0;
}

.focus-text {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.55;
    margin: 0;
    text-align: justify;
    hyphens: auto;
}

/* Bild */
.hero-image-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Datenschutz – gleiche Breite wie Startseite */
.privacy-wrapper {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Rechtliche Seiten */
.privacy-container {
    background: #e0e6ef;
    padding: 0 20px;
    margin: 0;
    border-radius: 8px;
}

.privacy-container h1,
.privacy-container h2 {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: justify;
    hyphens: auto;
    margin: 0 0 20px 0;
}

.privacy-container p,
.privacy-container li {
    font-size: 1rem;
    line-height: 1.55;
    text-align: justify;
    hyphens: auto;
    margin-bottom: 16px;
}

.privacy-container ul {
    padding-left: 20px;
}

/* Footer */
.site-footer {
    background: #f4f7fb;
    border-top: none;
    text-align: center;
    padding: 16px 20px;
    font-size: 0.9rem;
}

.site-footer a {
    color: #333;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Mobile Optimierung */
@media (max-width: 768px) {

    .intro,
    .two-column,
    .privacy-wrapper {
        margin: 20px auto;
    }

    .intro p,
    .privacy-container p,
    .privacy-container li,
    .focus-text {
        font-size: 1.05rem;
    }

    .hero-image-large {
        height: auto;
        object-fit: contain;
        border-radius: 12px;
    }

    .focus-wrapper {
        height: auto;
    }

    .site-footer {
        font-size: 1rem;
    }
}
