:root {
    /* Color Variables */
    --color-dark-green: #005538;
    --color-medium-green: #008939;
    --color-light-green: #8BC062;
    --color-gold: #FFD700;
    --color-white: white;
    --color-light-gray: #F5F5F5;
    --color-medium-gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Obviously', sans-serif;
    color: var(--color-dark-green);
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    background: transparent;
    padding: 10px 40px;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: var(--color-medium-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.navbar.scrolled .hamburger-line {
    background: var(--color-white);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link-button {
    display: none;
    background: var(--color-white);
    color: var(--color-dark-green);
    padding: 14px 24px 18px 24px;
    border-radius: 50px;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
    line-height: 1;
}

.nav-link-button:hover {
    background: var(--color-dark-green);
    color: var(--color-white);
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    text-align: center;
    line-height: 1;
    margin-top: -4px;
}

.navbar.scrolled .nav-logo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-logo:hover {
    color: var(--color-gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-button {
    background: var(--color-white);
    color: var(--color-dark-green);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 24px 18px 24px;
    border-radius: 50px;
    transition: background-color 0.2s, color 0.2s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-button {
    box-shadow: none;
}

.nav-button:hover {
    background: var(--color-dark-green);
    color: var(--color-white);
}

.nav-arrow {
    flex-shrink: 0;
    margin-top: 4px;
}


/* Typography */
h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
}
p {
    font-size: 18px;
    line-height: 1.5;
}

/* Container Utilities */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
}

/* Two-column Layout */
.two-column,
.two-column-start {
    display: flex;
    gap: 80px;
}

.two-column {
    align-items: center;
}

.two-column-start {
    align-items: flex-start;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 70px 30px 30px;
    margin-top: -70px;
}

.hero-bg,
.hero-person {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-bg {
    z-index: 1;
}

.hero-person {
    z-index: 3;
}

.hero-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1vh;
    position: relative;
    z-index: 2;
}

.hero-name {
    font-size: 6rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 0.9;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    text-align: center;
}


/* Introduction Section */
.intro {
    background: var(--color-white);
    padding: 80px 60px;
}

.intro-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-medium-green);
    text-align: left;
    margin: 0;
    line-height: 1.2;
}

.quote-box {
    flex: 1;
    position: relative;
}

.quote {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-medium-green);
    line-height: 1.2;
}

.arrow {
    display: block;
    width: auto;
    height: auto;
    max-width: 200px;
    margin-top: 20px;
    margin-left: auto;
}

.video-placeholder {
    flex: 1;
    aspect-ratio: 9 / 16;
    max-width: 400px;
    background: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    color: var(--color-medium-gray);
    overflow: hidden;
    margin: 0 auto;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Learn Section */
.learn-section {
    background: var(--color-dark-green);
    padding: 100px 60px;
}

.learn-image {
    flex: 1;
}

.learn-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.learn-text {
    flex: 1;
    color: var(--color-white);
}

.learn-text h2 {
    margin-bottom: 40px;
}

.learn-text p {
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    padding: 20px 40px;
    font-family: "obviously", sans-serif;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 20px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    align-self: center;
    border-radius: 50px;
    padding-top: 16px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-light,
.btn-dark {
    border-radius: 50px;
    font-weight: 800;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
}

.btn-light {
    background: var(--color-light-green);
    color: var(--color-white);
}

.btn-light:hover {
    transform: scale(1.05);
    color: var(--color-dark-green);
    background-color: var(--color-gold);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark-green);
}

.btn-white:hover {
    transform: scale(1.05);
    color: var(--color-dark-green);
    background-color: var(--color-gold);
}

.btn-dark {
    background: var(--color-dark-green);
    color: var(--color-white);
}

.btn-dark:hover {
    transform: scale(1.05);
    background-color: var(--color-gold);
    color: var(--color-dark-green);
}

.btn-green {
    background: var(--color-medium-green);
    color: var(--color-white);
    width: 100%;
}

/* Plan Section */
.plan-section {
    background: var(--color-white);
    padding: 100px 60px 0 60px;
}

.plan-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-light-green);
    margin-bottom: 10px;
    text-align: center;
}

.plan-title {
    color: var(--color-medium-green);
    margin-bottom: 60px;
    text-align: center;
}

.plan-button-wrapper {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.team-form-target {
    width: 100%;
}

.plan-list {
    list-style: none;
    margin: 0 auto 20px;
    max-width: 600px;
}

.plan-list li {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-medium-green);
    margin-bottom: 24px;
    padding-left: 75px;
    position: relative;
    line-height: 1.5;
}

.plan-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--color-light-green);
    border-radius: 50%;
    background-image: url('pictures/arrow_list.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Skyline Section */
.skyline-section {
    overflow: hidden;
    background-color: var(--color-white);
}

.skyline {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Section */
.team-section {
    background: var(--color-light-green);
    padding: 0 60px 100px 60px;
    margin-top: -1px;
}

.team-form {
    flex: 1;
}

.team-form h2 {
    color: var(--color-dark-green);
    margin-bottom: 24px;
}

.team-form > p {
    font-size: 20px;
    color: var(--color-dark-green);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input {
    padding: 18px 24px;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    font-size: 18px;
    color: var(--color-dark-green);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--color-medium-green);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--color-dark-green);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
    cursor: pointer;
}

.team-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Footer */
.footer {
    background: var(--color-dark-green);
    padding: 60px 60px;
    color: var(--color-white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top {
    text-align: center;
    width: 100%;
}

.footer-top-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-top p {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
}

.sunflower-logo-footer {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.footer-left {
    text-align: left;
}

.footer-left p {
    font-size: 12px;
    margin-bottom: 12px;
}

.footer-left h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.footer-links {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.social-icon {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-green);
    background: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, transform 0.2s;
}

.social-icon:hover {
    background: var(--color-gold);
    transform: scale(1.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Media Queries */

/* Large Desktop Screens */
@media (min-width: 1501px) {
    /* Add styles for screens wider than 1500px here */
    .hero-name {
        font-size: 8rem;
    }
    .skyline-section {
        margin-top: -200px;
    }
    .team-section {
        margin-top: -100px;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Navigation Bar */
    .navbar {
        padding: 16px 20px;
    }
    
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu-toggle {
        display: flex;
        flex: 0 0 auto;
    }
    
    .nav-logo {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
        margin: 0 auto;
    }
    
    .nav-right {
        flex: 0 0 auto;
        margin-left: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-medium-green);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.menu-open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 20px;
    }
    
    .nav-link-button {
        display: inline-flex;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .nav-button {
        font-size: 16px;
        padding: 6px 16px 10px 16px;
    }
    
    .nav-logo {
        font-size: 18px;
    }
    
    /* Typography */
    h2 {
        font-size: 32px;
    }
    
    p {
        font-size: 16px;
    }
    
    /* Hero Section */
    .hero {
        height: 85vh;
        min-height: 600px;
        max-height: 900px;
        padding: 20px;
    }
    
    .hero-name {
        font-size: 3rem;
        padding-top: 40px;
    }
    
    /* Introduction Section */
    .intro {
        padding: 40px 20px;
    }
    
    .intro-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .intro-left {
        gap: 30px;
    }
    
    .intro-text {
        font-size: 22px;
        margin: 0;
        text-align: left;
    }
    
    .quote {
        font-size: 20px;
    }
    
    .arrow {
        display: none;
    }
    
    .video-placeholder {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    /* Learn Section */
    .learn-section {
        padding: 60px 20px;
    }
    
    .two-column {
        flex-direction: column;
        gap: 40px;
    }
    
    .learn-text {
        text-align: center;
    }
    
    .learn-text h2 {
        margin-bottom: 24px;
    }
    
    .learn-text p {
        margin-bottom: 16px;
        text-align: left;
    }
    
    /* Buttons */
    .btn {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
        text-align: center;
        padding-top: 12px;
    }
    
    /* Plan Section */
    .plan-section {
        padding: 60px 20px 0 20px;
    }
    
    .plan-subtitle {
        font-size: 24px;
    }
    
    .plan-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .plan-list {
        max-width: 100%;
    }
    
    .plan-list li {
        font-size: 18px;
        padding-left: 60px;
        margin-bottom: 20px;
    }
    
    .plan-list li::before {
        width: 45px;
        height: 45px;
    }

    /* Team Section */
    .team-section {
        padding: 0 20px 60px 20px;
    }
    
    .two-column-start {
        flex-direction: column;
        gap: 40px;
    }
    
    .team-image img {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 40px 20px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-top {
        text-align: left;
    }
    
    .footer-top-text {
        justify-content: flex-start;
        gap: 12px;
    }
    
    .footer-top p {
        font-size: 20px;
    }
    
    .sunflower-logo-footer {
        width: 32px;
        height: 32px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 30px;
        align-items: flex-start;
    }
    
    .footer-left {
        text-align: left;
    }
    
    .footer-left h3 {
        font-size: 36px;
    }

    .footer-left p {
        margin: 0;
        font-size: 18px;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .social-icons {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-start;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 12px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 80vh;
        min-height: 550px;
        padding: 15px;
    }
    
    .hero-name {
        font-size: 3rem;
    }
    
    .intro-text {
        font-size: 20px;
    }
    
    .quote {
        font-size: 18px;
    }
    
    .video-placeholder {
        border-radius: 8px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .plan-subtitle {
        font-size: 20px;
    }
    
    .plan-title {
        font-size: 28px;
    }
    
    .plan-list li {
        font-size: 16px;
        padding-left: 50px;
    }
    
    .plan-list li::before {
        width: 40px;
        height: 40px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 15px;
        padding-top: 10px;
    }
}

/* Plan Hero Section */
.plan-hero {
    background: var(--color-dark-green);
    padding: 80px 60px 100px 60px;
    color: var(--color-white);
}

.plan-hero-content {
    text-align: center;
}

.plan-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 40px;
    line-height: 1.1;
}

/* Simple Hero Section (for Impressum, Datenschutz, Presse) */
.simple-hero {
    padding: 100px 60px 0 60px;
    background: var(--color-white);
}

.simple-hero-content {
    text-align: left;
    max-width: 900px;
    margin: 0;
}

.simple-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-medium-green);
    margin-bottom: 0;
    line-height: 1.1;
}

.plan-hero-text {
    font-size: 20px;
    color: var(--color-white);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.mitmachen-hero-image {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.mitmachen-hero-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Mitmachen Section */
.mitmachen-section {
    background: var(--color-light-gray);
    padding: 100px 60px;
}

.mitmachen-section-alt {
    background: var(--color-light-gray);
    padding-top: 0px;
}

.mitmachen-content {
    max-width: 900px;
    margin: 0 auto;
}

.mitmachen-item {
    text-align: center;
}

.mitmachen-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-medium-green);
    margin-bottom: 30px;
    line-height: 1.1;
}

.mitmachen-text {
    font-size: 20px;
    color: var(--color-dark-green);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mitmachen-form {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 40px;
}

/* Plan Accordion Section */
.plan-accordion-section {
    background: var(--color-dark-green);
    padding: 0 60px 100px 60px;
}

.plan-accordion-container {
    max-width: 1000px;
}

.plan-accordion {
    display: flex;
    flex-direction: column;
}

.plan-accordion-item {
    background: var(--color-white);
    border: 1px solid var(--color-dark-green);
}

.plan-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: transparent;
    border: none;
    color: var(--color-dark-green);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.3s ease;
}

.plan-accordion-item.active .plan-accordion-header {
    background: var(--color-medium-green);
}

.plan-accordion-header:hover {
    opacity: 0.9;
}

.plan-accordion-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-light-green);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    padding-bottom: 4px;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.plan-accordion-item.active .plan-accordion-icon {
    background: var(--color-gold);
    color: var(--color-dark-green);
}

.plan-accordion-title {
    flex: 1;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-dark-green);
    transition: color 0.3s ease;
    margin-top: -4px;
}

.plan-accordion-item.active .plan-accordion-title {
    color: var(--color-white);
}

.plan-accordion-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--color-dark-green);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
    transition: color 0.3s ease;
}

.plan-accordion-item.active .plan-accordion-toggle {
    color: var(--color-white);
    padding-bottom: 6px;
}

.plan-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px 0 24px;
}

.plan-accordion-item.active .plan-accordion-content {
    max-height: 500px;
    padding: 24px;
}

.plan-accordion-content p {
    font-size: 18px;
    color: var(--color-dark-green);
    line-height: 1.5;
    margin: 0;
}

.plan-program-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Achievements Section */
.achievements-section {
    background: var(--color-light-gray);
    padding: 100px 0 100px 0;
    width: 100%;
    box-sizing: border-box;
}

.achievements-title-container {
    padding: 0 60px;
    margin-bottom: 60px;
}

.achievements-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-medium-green);
    margin-bottom: 0;
    text-align: left;
}

.achievements-carousel {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.achievements-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-padding: 0 60px;
    padding-left: max(60px, calc((100vw - 1200px) / 2 + 60px));
    padding-right: 60px;
    width: 100%;
    box-sizing: border-box;
}

.achievements-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.achievement-card {
    min-width: 400px;
    max-width: 400px;
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.achievement-icon {
    width: 36px;
    height: 38px;
    flex-shrink: 0;
    object-fit: contain;
}

.achievement-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-medium-green);
    margin: 0;
    line-height: 1.2;
}

.achievement-text {
    font-size: 18px;
    color: var(--color-dark-green);
    line-height: 1.6;
    margin: 0;
}

.achievement-image {
    margin-top: auto;
    border-radius: 12px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: auto;
    display: block;
}

.achievements-nav-container {
    padding: 0 60px;
    margin-top: 40px;
}

.achievements-nav {
    display: flex;
    gap: 12px;
}

.achievements-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-light-green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.achievements-arrow:hover {
    background: var(--color-gold);
    transform: scale(1.1);
}

.achievements-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.arrow-icon.arrow-left {
    transform: rotate(180deg);
}

.arrow-icon.arrow-right {
    transform: rotate(0deg);
}

/* Mobile styles for plan page */
@media (max-width: 768px) {
    .plan-hero {
        padding: 60px 20px 60px 20px;
    }
    
    .plan-hero-title {
        font-size: 48px;
        margin-bottom: 24px;
    }
    
    .simple-hero {
        padding: 80px 20px 0 20px;
    }
    
    .simple-hero-title {
        font-size: 48px;
    }
    
    .plan-hero-text {
        font-size: 18px;
    }
    
    .mitmachen-hero-image {
        margin-top: 40px;
    }
    
    .mitmachen-hero-image img {
        width: 250px;
        height: 250px;
        border-width: 3px;
    }
    
    .mitmachen-section {
        padding: 60px 20px;
    }
    
    .mitmachen-title {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .mitmachen-text {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .plan-accordion-section {
        padding: 0 20px 60px 20px;
    }
    
    .plan-accordion-header {
        padding: 12px;
        gap: 12px;
    }
    
    .plan-accordion-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .plan-accordion-item.active .plan-accordion-icon {
        font-size: 20px;
    }
    
    .plan-accordion-title {
        font-size: 18px;
    }
    
    .plan-accordion-toggle {
        font-size: 24px;
        width: 24px;
    }
    
    .plan-accordion-content {
        padding: 0 20px 0 20px;
    }
    
    .plan-accordion-item.active .plan-accordion-content {
        padding: 20px;
    }
    
    .plan-accordion-content p {
        font-size: 16px;
    }
    
    .plan-program-button-container {
        margin-top: 30px;
    }
    
    .achievements-section {
        padding: 60px 0 60px 0;
    }
    
    .achievements-title-container {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .achievements-title {
        font-size: 32px;
        margin-bottom: 0;
        text-align: left;
    }
    
    .achievements-carousel {
        width: 100%;
    }
    
    .achievements-track {
        padding-left: 20px;
        padding-right: 20px;
        scroll-padding: 0 20px;
    }
    
    .achievements-nav-container {
        padding: 0 20px;
        margin-top: 30px;
    }
    
    .achievements-track {
        gap: 20px;
    }
    
    .achievement-card {
        min-width: 280px;
        max-width: 280px;
        padding: 30px 20px;
    }
    
    .achievement-title {
        font-size: 22px;
    }
    
    .achievement-text {
        font-size: 16px;
    }
    
    .achievements-nav {
        margin-top: 30px;
        gap: 10px;
    }
    
    .achievements-arrow {
        width: 44px;
        height: 44px;
    }
    
    .arrow-icon {
        width: 20px;
        height: 20px;
    }
    
    .achievements-arrow:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
}

@media (max-width: 480px) {
    .plan-hero-title {
        font-size: 36px;
    }
    
    .plan-hero-text {
        font-size: 16px;
    }
    
    .simple-hero-title {
        font-size: 36px;
    }
    
    .achievements-title {
        font-size: 28px;
    }
}

/* About Page Styles */
.about-section {
    padding: 100px 60px;
    background: var(--color-white);
}

.about-section-alt {
    padding-top: 0px;
}

.about-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-content-text-first {
    flex-direction: row;
}

.about-content-image-first {
    flex-direction: row-reverse;
}

.about-text-block {
    flex: 1;
    max-width: 600px;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-medium-green);
    margin-bottom: 32px;
    line-height: 1.1;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-dark-green);
    margin-bottom: 24px;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-images-block {
    flex: 1;
    max-width: 600px;
}

.about-images-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.about-images-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.about-images-grid-3 .about-image-item:first-child {
    grid-row: span 2;
    aspect-ratio: 2 / 3;
}

.about-images-grid-3 .about-image-item:not(:first-child) {
    aspect-ratio: 1;
}

.about-images-grid-single {
    grid-template-columns: 1fr;
}

.about-images-grid-single .about-image-item {
    aspect-ratio: 3 / 2;
}

.about-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-image-item:hover .about-image {
    transform: scale(1.05);
}

/* Mobile styles for about page */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .about-content {
        flex-direction: column !important;
        gap: 40px;
    }
    
    .about-text-block {
        max-width: 100%;
    }
    
    .about-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .about-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .about-images-block {
        max-width: 100%;
        width: 100%;
    }
    
    .about-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .about-images-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .about-images-grid-3 .about-image-item:first-child {
        grid-row: span 2;
        aspect-ratio: 2 / 3;
    }
    
    .about-images-grid-3 .about-image-item:not(:first-child) {
        aspect-ratio: 1;
    }
    
    .about-images-grid-single {
        grid-template-columns: 1fr;
    }
    
    .about-images-grid-single .about-image-item {
        aspect-ratio: 3 / 2;
    }
    
    .about-image-item {
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 20px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 15px;
    }
    
    .about-images-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-images-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .about-images-grid-3 .about-image-item:first-child {
        grid-row: span 2;
        aspect-ratio: 2 / 3;
    }
    
    .about-images-grid-3 .about-image-item:not(:first-child) {
        aspect-ratio: 1;
    }
    
    .about-images-grid-single {
        grid-template-columns: 1fr;
    }
    
    .about-images-grid-single .about-image-item {
        aspect-ratio: 3 / 2;
    }
}

/* Presse Page Styles */
.presse-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.presse-image-link:hover {
    transform: translateY(-4px);
}

.presse-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.presse-image-link:hover .presse-image {
    transform: scale(1.05);
}

.presse-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 85, 56, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.presse-image-link:hover .presse-image-overlay {
    opacity: 1;
}

.presse-download-text {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.presse-image-item {
    display: flex;
    flex-direction: column;
}

.presse-image-caption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-medium-gray);
    text-align: center;
}

/* Mobile styles for presse page */
@media (max-width: 768px) {
    .presse-images-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 480px) {
    .presse-images-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Cookie Consent Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
}

.cookie-consent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cookie-consent-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-medium-green);
    margin: 0;
}

.cookie-consent-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--color-medium-gray);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.2s;
}

.cookie-consent-close:hover {
    color: var(--color-dark-green);
}

.cookie-consent-body {
    margin-bottom: 24px;
}

.cookie-consent-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark-green);
    margin-bottom: 24px;
}

.cookie-consent-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-consent-category {
    padding: 20px;
    background: var(--color-light-gray);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.cookie-consent-category.required {
    opacity: 0.7;
}

.cookie-consent-category-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cookie-consent-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-consent-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-consent-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-medium-gray);
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-consent-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: var(--color-white);
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-consent-toggle input:checked + .cookie-consent-toggle-slider {
    background-color: var(--color-medium-green);
}

.cookie-consent-toggle input:checked + .cookie-consent-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-consent-toggle input:disabled + .cookie-consent-toggle-slider {
    background-color: var(--color-medium-green);
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-consent-category-info {
    flex: 1;
}

.cookie-consent-category-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0 0 8px 0;
}

.cookie-consent-category-info p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-medium-gray);
    margin: 0;
}

.cookie-consent-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    line-height: 1;
}

.cookie-consent-btn-primary {
    background: var(--color-medium-green);
    color: var(--color-white);
}

.cookie-consent-btn-primary:hover {
    background: var(--color-dark-green);
    transform: translateY(-2px);
}

.cookie-consent-btn-secondary {
    background: var(--color-light-gray);
    color: var(--color-dark-green);
}

.cookie-consent-btn-secondary:hover {
    background: var(--color-medium-gray);
    color: var(--color-white);
}

/* Cookie Consent Modal */
.cookie-consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-consent-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-consent-modal-content {
    background: var(--color-white);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-consent-modal.show .cookie-consent-modal-content {
    transform: scale(1);
}

.cookie-consent-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid var(--color-light-gray);
}

.cookie-consent-modal-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-medium-green);
    margin: 0;
}

.cookie-consent-modal-body {
    padding: 30px 40px;
}

.cookie-consent-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px 40px;
    border-top: 1px solid var(--color-light-gray);
}

/* Mobile styles for cookie consent */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: 24px 20px;
    }

    .cookie-consent-header h3 {
        font-size: 24px;
    }

    .cookie-consent-description {
        font-size: 15px;
    }

    .cookie-consent-category {
        padding: 16px;
    }

    .cookie-consent-category-header {
        gap: 12px;
    }

    .cookie-consent-category-info h4 {
        font-size: 16px;
    }

    .cookie-consent-category-info p {
        font-size: 13px;
    }

    .cookie-consent-footer {
        flex-direction: column;
    }

    .cookie-consent-btn {
        width: 100%;
        padding: 16px 28px;
    }

    .cookie-consent-modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }

    .cookie-consent-modal-header,
    .cookie-consent-modal-body,
    .cookie-consent-modal-footer {
        padding: 20px;
    }

    .cookie-consent-modal-header h3 {
        font-size: 24px;
    }

    .cookie-consent-modal-footer {
        flex-direction: column;
    }

    .cookie-consent-modal-footer .cookie-consent-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-consent-content {
        padding: 20px 16px;
    }

    .cookie-consent-header h3 {
        font-size: 20px;
    }

    .cookie-consent-description {
        font-size: 14px;
    }

    .cookie-consent-category {
        padding: 12px;
    }

    .cookie-consent-toggle {
        width: 44px;
        height: 24px;
    }

    .cookie-consent-toggle-slider:before {
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
    }

    .cookie-consent-toggle input:checked + .cookie-consent-toggle-slider:before {
        transform: translateX(20px);
    }
}

/* Cookie Consent Placeholder (for blocked content) */
.cookie-consent-placeholder {
    background: var(--color-light-gray);
    border: 2px dashed var(--color-medium-gray);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.cookie-consent-placeholder-content {
    max-width: 400px;
}

.cookie-consent-placeholder-content p {
    font-size: 16px;
    color: var(--color-dark-green);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-consent-placeholder .cookie-consent-btn {
    margin-top: 0;
}

@media (max-width: 768px) {
    .cookie-consent-placeholder {
        padding: 30px 15px;
        min-height: 150px;
    }

    .cookie-consent-placeholder-content p {
        font-size: 14px;
    }
}

