<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header und Navigation */
.header-top {
    background: linear-gradient(135deg, #7ec87e 0%, #9dd09d 100%);
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    color: #fff;
    font-size: 14px;
}

.header-info span {
    margin-right: 20px;
}

.header-main {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background: linear-gradient(135deg, #7ec87e, #9dd09d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-text {
    color: #f4d03f;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 600;
}

/* NEW: Mobile toggle button */
.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}
.menu-toggle:focus {
    outline: 2px solid #7ec87e;
    outline-offset: 2px;
}
.menu-toggle:active {
    background: rgba(0,0,0,0.05);
}
.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: #333;
    display: block;
    margin: 5px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    -webkit-transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    -webkit-transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    -webkit-transform: translateY(-7px) rotate(-45deg);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: #7ec87e;
}

nav a.active {
    color: #7ec87e;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #7ec87e;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(126, 200, 126, 0.1), rgba(126, 200, 126, 0.05));
    padding: 60px 0;
}

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

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

.hero h2 {
    color: #2c5f2d;
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.notice-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 5px;
}

.notice-box strong {
    color: #856404;
    display: block;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #7ec87e, #9dd09d);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(126, 200, 126, 0.3);
}

/* Services Section */
.services {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #7ec87e;
}

.service-icon {
    font-size: 40px;
    color: #7ec87e;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #2c5f2d;
    margin-bottom: 10px;
    font-size: 20px;
}

.service-card p {
    color: #666;
    font-size: 14px;
}

/* Schedule Section */
.schedule {
    background: #f8f9fa;
    padding: 60px 0;
}

.schedule-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.schedule-box h3 {
    color: #2c5f2d;
    margin-bottom: 20px;
    font-size: 24px;
}

.schedule-table {
    width: 100%;
}

.schedule-table tr {
    border-bottom: 1px solid #eee;
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    padding: 10px 0;
}

.schedule-table td:first-child {
    font-weight: 500;
    color: #2c5f2d;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li:before {
    content: "→";
    color: #7ec87e;
    font-weight: bold;
    margin-right: 10px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-box {
    text-align: center;
}

.contact-icon {
    font-size: 40px;
    color: #7ec87e;
    margin-bottom: 15px;
}

.contact-box h3 {
    color: #2c5f2d;
    margin-bottom: 10px;
}

.contact-box p {
    color: #666;
}

.contact-box a {
    color: #7ec87e;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #7ec87e 0%, #9dd09d 100%);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #f4d03f;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f4d03f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-info {
        display: none;
    }

    /* Stack header content */
    .nav-container {
        flex-direction: row;
    }

    /* Show hamburger */
    .menu-toggle {
        display: inline-block;
        position: relative;
        z-index: 1100;
        pointer-events: auto;

    }

    /* Collapse nav by default on mobile */
    nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        border-bottom: 1px solid #eee;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        -webkit-transition: max-height 0.3s ease-out;
    }
    nav[aria-hidden="true"] {
        max-height: 0;
        visibility: hidden;
    }
    nav[aria-hidden="false"] {
        max-height: 500px;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 16px;
    }

    nav li {
        border-bottom: 1px solid #f0f0f0;
    }
    nav li:last-child {
        border-bottom: 0;
    }

    nav a {
        display: block;
        padding: 12px 4px;
    }

    /* Prevent tall menu from covering half screen permanently */
    .header-main.nav-open {
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* Additional mobile optimizations */
    .hero h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .schedule-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Content Sections */
.content-section {
    display: none;
    padding: 60px 0;
}

.content-section.active {
    display: block;
}

.impressum-content, .datenschutz-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.impressum-content h3, .datenschutz-content h3 {
    color: #2c5f2d;
    margin-top: 30px;
    margin-bottom: 15px;
}

.impressum-content p, .datenschutz-content p {
    margin-bottom: 15px;
}

.logo {
    display: flex;
    align-items: center;
}
.logo-icon {
    width: 36px;   /* Größe anpassen */
    height: 36px;
    display: block;
}
.logo-section .logo + .logo-text {
    margin-left: 0.5rem;
}

/* Extra small devices */
@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 16px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .service-card {
        padding: 20px;
    }

    .cta-button {
        font-size: 14px;
        padding: 12px 25px;
    }
}
</style>
