:root {
    --white: #FFFFFF;
    --cream: #FDF9F3;
    --cream-dark: #F5EDE0;
    --gray-50: #FAF9F7;
    --gray-100: #F3F2EF;
    --gray-200: #E5E4E0;
    --gray-400: #9C9B97;
    --gray-500: #6B6A66;
    --gray-600: #5C5B57;
    --gray-700: #4A433B;
    --gray-800: #3D352E;
    --gray-900: #2F2822;

    --gold: #BFA24C;
    --gold-dark: #A08A3D;
    --gold-light: #F9F6ED;
    --gold-50: #FDFCF8;

    --sage: #7A9E7E;
    --sage-light: #E8F0E9;
    --sage-dark: #5C7D5F;
    --sage-900: #2D3F32;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon--lg {
    width: 32px;
    height: 32px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--sage-900);
}

.header--static {
    position: static;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header__logo {
    height: 52px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.header__nav a:hover {
    color: var(--sage-light);
}

.header__cta {
    background: var(--sage);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.header__cta:hover {
    background: var(--sage-light);
    color: var(--sage-900) !important;
}

/* Section */
.section {
    padding: 80px 0;
}

.section--gray {
    background: var(--gray-50);
}

.section--gold {
    background: var(--cream);
}

.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section__desc {
    font-size: 18px;
    color: var(--gray-600);
}

/* Footer */
.footer {
    background: var(--sage-900);
    padding: 64px 0 0;
}

.footer--simple {
    padding: 24px;
    text-align: center;
    font-size: 14px;
}

.footer--simple a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer--simple a:hover {
    color: var(--sage-light);
}

.footer__main {
    display: block;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__nav {
    display: flex;
    justify-content: center;
}

.footer__col {
    text-align: center;
}

.footer__heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__col--partners {
    width: 100%;
    max-width: 760px;
}

.footer__partners {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.footer__partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    text-align: left;
    max-width: 360px;
}

.footer__partner:hover .footer__partner-name {
    color: var(--sage-light);
}

.footer__partner-logo {
    flex-shrink: 0;
    display: block;
    width: 142px;
    height: 66px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 6px;
    object-fit: contain;
}

.footer__partner-logo--wertvoll {
}

.footer__partner-logo--herzenskind {
    padding: 10px 12px;
}

.footer__partner-name {
    display: inline-block;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.footer__partner-text {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.5;
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer__bottom-links a:hover {
    color: var(--sage-light);
}

/* Content pages */
.content-page {
    background: var(--gray-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-page__main {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px;
    width: 100%;
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid var(--gray-100);
}

.card h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 32px;
}

/* Consent Banner */
.consent-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: var(--sage-900); /* Dunkler Hintergrund aus dem Theme */
color: var(--white);
padding: 15px 0;
z-index: 1000;
font-size: 14px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
opacity: 0; /* Anfangs versteckt */
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}

.consent-banner.visible {
opacity: 1;
visibility: visible;
}

.consent-banner__content {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.consent-banner__content p {
margin: 0;
flex-grow: 1;
max-width: 70%; /* Passt den Platz für den Text an */
}

.consent-banner__content a {
color: var(--sage-light);
text-decoration: underline;
}

.consent-banner__content a:hover {
color: var(--white);
}

.consent-banner__actions {
display: flex;
gap: 10px;
white-space: nowrap; /* Verhindert Umbruch der Buttons */
}

.consent-banner__button {
padding: 10px 20px;
border: none;
border-radius: 50px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
transition: background 0.2s, color 0.2s;
}

.consent-banner__button--accept {
background: var(--sage);
color: var(--white);
}

.consent-banner__button--accept:hover {
background: var(--sage-dark);
}

.consent-banner__button--decline {
background: transparent;
color: var(--sage-light);
border: 1px solid var(--sage-light);
}

.consent-banner__button--decline:hover {
background: var(--sage-light);
color: var(--sage-900);
}

@media (max-width: 768px) {
.consent-banner__content {
    flex-direction: column;
    text-align: center;
}
.consent-banner__content p {
    max-width: 100%;
    margin-bottom: 15px;
}
.consent-banner__actions {
    flex-direction: column;
    width: 100%;
}
.consent-banner__button {
    width: 100%;
}
}

.card h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-800);
    margin-top: 32px;
    margin-bottom: 12px;
}

.card h2:first-of-type {
    margin-top: 0;
}

.card p {
    color: var(--gray-600);
    margin-bottom: 12px;
}

.card ul {
    color: var(--gray-600);
    margin: 12px 0;
    padding-left: 24px;
}

.card li {
    margin-bottom: 8px;
}

.card a {
    color: var(--gold-dark);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 12px 20px;
    background: var(--sage-900);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.back-link:hover {
    background: var(--sage-dark);
    color: var(--white);
}

/* Mobile */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .footer {
        padding: 48px 0 0;
    }

    .footer__main {
        gap: 32px;
    }

    .footer__nav {
        justify-content: center;
    }

    .footer__partner {
        text-align: center;
    }

    .footer__partners {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer__bottom {
        text-align: center;
    }

    .card {
        padding: 24px;
    }
}
