/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #6b8a6b;
}

h2 {
    font-size: 2rem;
    color: #7a9a7a;
}

h3 {
    font-size: 1.5rem;
    color: #7a9a7a;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #9db89d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

.text-link {
    color: #e74c3c;
    font-weight: 500;
}

.text-link:hover {
    color: #c0392b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #9db89d;
    color: white;
    border-color: #9db89d;
}

.btn-primary:hover {
    background-color: #8bb38b;
    border-color: #8bb38b;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #9db89d;
    border-color: #9db89d;
}

.btn-secondary:hover {
    background-color: #9db89d;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #34495e;
    border-color: #34495e;
}

.btn-outline:hover {
    background-color: #34495e;
    color: white;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 60px;
    gap: 1rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 0;
}


.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.8rem;
}

.nav-menu-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-menu-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: #7a9a7a;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: #9db89d;
    background-color: rgba(39, 174, 96, 0.1);
}

.nav-link-instagram {
    padding: 8px 12px !important;
    font-size: 1.2rem !important;
    color: #7a9a7a !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    min-width: 40px !important;
}

.nav-link-instagram:hover {
    color: #E4405F !important;
    background-color: rgba(228, 64, 95, 0.1) !important;
    transform: translateY(-2px) !important;
}

.nav-link-highlight {
    background: linear-gradient(135deg, #9db89d, #8bb38b) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(157, 184, 157, 0.3) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 0.85rem !important;
}

.nav-link-highlight:hover {
    background: linear-gradient(135deg, #8bb38b, #7a9a7a) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(157, 184, 157, 0.4) !important;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #34495e;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #9db89d;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #34495e;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #9db89d 0%, #8bb38b 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

/* Ziele-Seite: clean & minimal (scoped) */
.goals-page .page-header .header-badges {
    margin-top: 1.75rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.goals-page .page-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.goals-page .page-header .header-badge i {
    opacity: 0.95;
}

.services-page .page-header .header-badges {
    margin-top: 1.75rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-page .page-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.services-page .page-header .header-badge i {
    opacity: 0.95;
}

.services-page .services-overview,
.services-page .services,
.services-page .special-services,
.services-page .quality-standards {
    padding: 80px 0;
}

.services-page .services-overview {
    background: #ffffff;
}

.services-page .overview-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.services-page .overview-text {
    max-width: 780px;
}

.services-page .overview-text h2 {
    color: #2c3e50;
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.services-page .overview-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.75;
}

.services-page .overview-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}

.services-page .services {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .services-page .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.services-page .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-page .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.09);
}

.services-page .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    margin: 0 0 0.9rem 0;
}

.services-page .service-card h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.services-page .service-card p {
    color: #666;
    margin-bottom: 0.75rem;
}

.services-page .service-features {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    display: grid;
    gap: 0.5rem;
}

.services-page .service-features li {
    position: relative;
    padding-left: 1.5rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.services-page .service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
}

.services-page .special-services {
    background: #ffffff;
}

.services-page .special-services h2,
.services-page .quality-standards h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

.services-page .special-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 900px) {
    .services-page .special-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.services-page .special-service {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.services-page .special-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.services-page .special-service h3 {
    color: #2c3e50;
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.services-page .special-service p {
    margin: 0;
    color: #666;
    line-height: 1.65;
    font-size: 0.98rem;
}

.services-page .quality-standards {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-page .standards-content {
    max-width: 1000px;
    margin: 0 auto;
}

.services-page .standards-content > p {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.services-page .standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

@media (min-width: 900px) {
    .services-page .standards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.services-page .standard-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: left;
}

.services-page .standard-item i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    margin-bottom: 0.75rem;
}

.services-page .standard-item h3 {
    color: #2c3e50;
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.services-page .standard-item p {
    margin: 0;
    color: #666;
    line-height: 1.65;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .services-page .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-page .overview-text {
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-page .page-header h1 {
        font-size: 2.1rem;
    }

    .services-page .page-header p {
        font-size: 1.05rem;
    }

    .services-page .overview-text h2 {
        font-size: 1.8rem;
    }
}

.goals-page .mission,
.goals-page .vision,
.goals-page .values {
    padding: 80px 0;
}

.goals-page .mission {
    background: #ffffff;
}

.goals-page .mission-content,
.goals-page .vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.goals-page .mission-content h2,
.goals-page .vision-content h2,
.goals-page .values h2 {
    color: #2c3e50;
}

.goals-page .mission-content p,
.goals-page .vision-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
}

.goals-page .goals {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.goals-page .goal-card {
    text-align: left;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.goals-page .goal-card:hover {
    transform: translateY(-4px);
}

.goals-page .goal-icon {
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin: 0 0 0.75rem 0;
}

.goals-page .goal-card h3 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
    font-size: 1.25rem;
}

.goals-page .goal-card p {
    margin-bottom: 0.25rem;
    color: #666;
}

.goals-page .goal-card ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    display: grid;
    gap: 0.5rem;
}

.goals-page .goal-card li {
    position: relative;
    padding-left: 1.5rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.goals-page .goal-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
}

.goals-page .vision {
    background: #ffffff;
}

.goals-page .vision-text {
    margin-top: 1.5rem;
}

.goals-page .vision-points {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.goals-page .vision-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.goals-page .vision-point i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.goals-page .vision-point h4 {
    margin: 0 0 0.25rem 0;
    color: #2c3e50;
    font-size: 1.05rem;
}

.goals-page .vision-point p {
    margin: 0;
    color: #666;
    font-size: 0.98rem;
}

.goals-page .values {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.goals-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.goals-page .value-item {
    min-height: 170px;
}

/* Desktop: 3x3-Kachel-Layout (3 Spalten) */
@media (min-width: 900px) {
    .goals-page .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.goals-page .value-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.goals-page .value-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.goals-page .value-item p {
    margin: 0;
    color: #666;
    line-height: 1.65;
    font-size: 0.98rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
}

.hero h2,
.hero-lead {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9db89d;
    font-weight: 500;
}

.hero-features .feature-item i {
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.hero-img {
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #9db89d;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Section */
.about-section {
    background-color: white;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-stats .stat-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-stats .stat-item:hover {
    transform: translateY(-3px);
}

.about-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #9db89d;
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #9db89d;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* SEO guide on homepage */
.seo-guide-section {
    background-color: white;
    padding: 80px 0;
}

.seo-guide-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.seo-guide-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.seo-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.seo-guide-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    border-top: 4px solid #9db89d;
}

.seo-guide-card h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.seo-guide-card p,
.seo-guide-card li {
    color: #555;
    line-height: 1.65;
}

.seo-guide-card ul {
    margin: 1rem 0 0 1.1rem;
}

.seo-guide-card a {
    font-weight: 500;
}

@media (max-width: 768px) {
    .seo-guide-section {
        padding: 48px 0;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    color: white;
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-actions .btn-primary {
    background-color: white;
    color: #9db89d;
    border: 2px solid white;
}

.cta-actions .btn-primary:hover {
    background-color: transparent;
    color: white;
}

.cta-actions .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-actions .btn-secondary:hover {
    background-color: white;
    color: #9db89d;
}

.cta-actions .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.cta-actions .btn-outline:hover {
    background-color: white;
    color: #9db89d;
    border-color: white;
}

/* Newsletter CTA */
.newsletter-cta {
    background-color: #7a9a7a;
    color: white;
    padding: 60px 0;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    background-color: #9db89d;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #8bb38b;
}

/* Sections */
.welcome, .history, .goals, .services, .demands, .why-cologne, .contact-cta, .about, .members, .newsletter, .newsletter-archive, .contact, .faq, .steps, .available-places, .search-section, .application-process, .impressum-content, .datenschutz-content {
    padding: 80px 0;
}

.press-section,
.press-article-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.press-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.press-intro h2 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.press-intro p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.press-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.06);
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.press-card-header {
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    padding: 1.5rem;
    color: white;
}

.press-source,
.press-date {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.75rem;
}

.press-card-header h3 {
    color: white;
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.press-card-content {
    padding: 1.5rem;
    flex: 1;
}

.press-card-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.press-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.press-read-more {
    color: #9db89d;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.press-card:hover .press-read-more {
    color: #8bb38b;
}

.press-article-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.press-breadcrumb {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.75rem;
}

.press-breadcrumb a {
    color: #9db89d;
    font-weight: 600;
}

.press-breadcrumb span {
    margin: 0 0.35rem;
    color: #bbb;
}

.press-article-source {
    color: #666;
    margin: 0.5rem 0 0 0;
}

.press-embed-note {
    background: #fff3cd;
    border: 1px solid rgba(243, 156, 18, 0.35);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1rem 0 1.25rem;
}

.press-embed-note p {
    margin: 0;
    color: #856404;
}

.press-embed-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.press-embed {
    width: 100%;
    height: min(95vh, 2500px);
    min-height: 1200px;
    border: 0;
}

.welcome {
    background-color: white;
}

.history {
    background-color: #f8f9fa;
}

.goals, .services, .why-cologne, .contact-cta, .about, .members, .newsletter, .newsletter-archive, .contact, .faq, .steps, .available-places, .search-section, .application-process, .impressum-content, .datenschutz-content {
    background-color: white;
}

.demands {
    background-color: #f8f9fa;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.welcome-image {
    display: flex;
    justify-content: center;
}

.welcome-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* History Timeline */
.history-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-year {
    background-color: #9db89d;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-icon {
    width: 60px;
    height: 60px;
    background-color: #9db89d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.goal-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #9db89d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Demands Introduction */
.demands-intro {
    background-color: white;
    padding: 80px 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-header {
    margin-bottom: 3rem;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.intro-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin-top: 1rem;
}

.intro-text {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.demand-highlight {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f39c12;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background-color: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    color: #d68910;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-content p {
    margin-bottom: 1rem;
    color: #856404;
}

/* Demands Section */
.demands {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.demands-progress {
    margin-top: 2rem;
    text-align: center;
}

.progress-bar {
    width: 300px;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9db89d, #8bb38b);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.progress-text {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.demands-content {
    margin-top: 3rem;
}

.demand-list {
    max-width: 1000px;
    margin: 0 auto;
}

.demand-item {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #9db89d;
}

.demand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.demand-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.demand-number {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.demand-status {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background-color: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    border: 3px solid white;
}

.demand-title {
    flex: 1;
}

.demand-title h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.demand-priority {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background-color: #e74c3c;
    color: white;
}

.demand-content {
    padding: 0 2rem 2rem;
}

.demand-details {
    margin-top: 1rem;
}

.demand-subitem {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #9db89d;
}

.subitem-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.subitem-header i {
    width: 40px;
    height: 40px;
    background-color: #9db89d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.subitem-header h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.1rem;
}

.amount-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-radius: 12px;
    border: 2px solid #9db89d;
}

.amount-highlight.large {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.amount-highlight-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.amount-highlight-group .amount-highlight-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
}

.amount-highlight-group .amount-highlight-row .current-amount {
    font-size: 0.9rem;
}

.amount-highlight-group .amount-highlight-row .target-amount {
    font-size: 1.1rem;
}

.amount-highlight-group .amount-highlight-row:not(:last-child) {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(157, 184, 157, 0.4);
}

.current-amount {
    color: #666;
    font-size: 0.9rem;
}

.target-amount {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
}

.target-amount small {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.amount-highlight i {
    color: #9db89d;
    font-size: 1.2rem;
}

.demand-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #9db89d;
}

.feature-item i {
    color: #9db89d;
    font-size: 1.2rem;
    width: 24px;
}

.demand-reason {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.demand-reason i {
    color: #2196f3;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.demand-reason span {
    color: #1565c0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Quick Links */
.quick-links {
    background-color: #f8f9fa;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quick-link-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    background-color: #9db89d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.quick-link-card h3 {
    margin-bottom: 1rem;
    color: #6b8a6b;
}

/* Why Cologne Reasons */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Forderungen: Kacheln als 2x2 */
@media (min-width: 900px) {
    .demands-page .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
}

.reason-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.reason-number {
    width: 40px;
    height: 40px;
    background-color: #9db89d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.reason-card h3 {
    margin-bottom: 0.8rem;
    color: #6b8a6b;
    font-size: 1.1rem;
    line-height: 1.3;
}

.reason-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
    flex-grow: 1;
}

/* Enhanced Impact Section */
.impact {
    background-color: white;
    padding: 80px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Forderungen: Auswirkungen als 4 Karten nebeneinander (Desktop) */
@media (min-width: 1200px) {
    .demands-page .impact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.impact-item {
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
    border-top: 5px solid #9db89d;
    transition: box-shadow 0.3s ease;
}

.impact-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.impact-header {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.impact-header h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.3rem;
    flex: 1;
}

.impact-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.impact-content {
    padding: 1rem 2rem 2rem;
}

.impact-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.impact-content li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.impact-content li i {
    color: #27ae60;
    font-size: 1rem;
    width: 20px;
}

.impact-content li span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.impact-benefit {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    color: #155724;
    font-size: 0.9rem;
}

.impact-summary {
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Enhanced Support Section */
.support {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.support-content {
    max-width: 1200px;
    margin: 0 auto;
}

.support-header {
    text-align: center;
    margin-bottom: 4rem;
}

.support-header h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.support-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}


.support-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-action {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #9db89d;
}

.support-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.action-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.action-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.action-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.action-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-tag {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    color: #27ae60;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #27ae60;
}

.action-content .btn {
    align-self: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.action-content .btn i {
    font-size: 1rem;
}

.support-cta {
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.cta-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large i {
    font-size: 1.2rem;
}

/* Communication Channels */
.communication-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.channel-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #9db89d;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.whatsapp-channel {
    border-left-color: #9db89d;
}

.channel-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.whatsapp-channel .channel-icon {
    background: linear-gradient(135deg, #9db89d, #8bb38b);
}

.channel-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.channel-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.channel-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.channel-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.channel-benefits li i {
    color: #27ae60;
    font-size: 0.8rem;
}

.membership-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

.membership-badge i {
    font-size: 0.9rem;
}

/* WhatsApp Introduction Section */
.whatsapp-intro {
    background-color: white;
    padding: 80px 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.intro-text p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.intro-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-item i {
    color: #9db89d;
    font-size: 1.5rem;
}

.highlight-item span {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

/* WhatsApp Section */
.whatsapp-section {
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    color: white;
    padding: 80px 0;
}

.whatsapp-content {
    max-width: 1200px;
    margin: 0 auto;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.whatsapp-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
}

.whatsapp-info h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.whatsapp-info p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    line-height: 1.6;
}

.whatsapp-benefits {
    margin-bottom: 4rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.whatsapp-access {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.access-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.access-info h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.access-info p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.access-requirements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 0;
    border-left: 3px solid rgba(255,255,255,0.3);
    padding-left: 1rem;
}

.access-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.access-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.access-actions .btn-primary {
    background-color: white;
    color: #9db89d;
    border: 2px solid white;
}

.access-actions .btn-primary:hover {
    background-color: transparent;
    color: white;
}

.access-actions .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.access-actions .btn-secondary:hover {
    background-color: white;
    color: #9db89d;
}

/* Contact Introduction Section */
.contact-intro {
    background-color: white;
    padding: 80px 0;
}

.contact-intro .intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-intro p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #9db89d;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.benefit-card .benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.benefit-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Enhanced Steps Section */
.steps-intro {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(157, 184, 157, 0.3);
}

.steps-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid #9db89d;
}

.steps-cta h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.steps-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Contact CTA */
.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    color: #9db89d;
    margin-bottom: 1rem;
}

.contact-content h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-steps {
    margin: 3rem 0;
}

.contact-steps h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #9db89d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #9db89d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-text p {
    margin-bottom: 0;
}

/* Forms */
.form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9db89d;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h3 {
    margin-bottom: 0;
    color: #2c3e50;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    overflow: visible;
}

/* Maps Section */
.maps-section {
    padding: 80px 0;
    background-color: white;
}

.maps-container {
    margin-bottom: 2rem;
}

.maps-info {
    text-align: center;
    margin-top: 1rem;
}

.maps-info p {
    color: #666;
    font-style: italic;
}

.maps-info i {
    color: #9db89d;
    margin-right: 0.5rem;
}

/* Search Section */
.search-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.search-filters {
    max-width: 800px;
    margin: 0 auto;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

/* Available Places */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.place-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.place-card:hover {
    transform: translateY(-5px);
}

.place-header {
    padding: 1.5rem;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.place-header h3 {
    margin-bottom: 0;
    color: #2c3e50;
}

.availability {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.availability.available {
    background-color: #d4edda;
    color: #155724;
}

.availability.limited {
    background-color: #fff3cd;
    color: #856404;
}

.availability.unavailable {
    background-color: #f8d7da;
    color: #721c24;
}

.place-details {
    padding: 1.5rem;
}

.place-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.info-item i {
    color: #9db89d;
    width: 16px;
}

.place-description {
    margin-bottom: 1rem;
    color: #555;
}

.place-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.place-contact i {
    color: #9db89d;
    font-size: 1rem;
}

.place-contact a {
    color: #9db89d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.place-contact a:hover {
    color: #8bb38b;
    text-decoration: underline;
}

.place-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Application Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background-color: #9db89d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Newsletter Benefits */
.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.benefit-item i {
    font-size: 2rem;
    color: #9db89d;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Newsletter Archive */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.archive-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.archive-date {
    color: #9db89d;
    font-weight: 500;
    margin-bottom: 1rem;
}

.archive-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.archive-item p {
    margin-bottom: 1.5rem;
    color: #555;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background-color: #9db89d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #9db89d;
}

.content-section h3 {
    color: #34495e;
    margin-bottom: 0.5rem;
}

.impressum-details,
.datenschutz-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.impressum-details p,
.datenschutz-details p {
    margin-bottom: 1rem;
}

.impressum-details ul,
.datenschutz-details ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.impressum-details li,
.datenschutz-details li {
    margin-bottom: 0.5rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-top: 2rem;
}

/* Membership Page Styles */
.membership-benefits {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    color: #6b8a6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.membership-form-section {
    background-color: white;
    padding: 80px 0;
    scroll-margin-top: 80px;
}

.membership-form-section .form-container {
    display: block !important;
}

.form-intro {
    color: #555;
    margin-bottom: 1.5rem;
}

.sepa-box {
    background-color: #f8f9fa;
    border-left: 4px solid #9db89d;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.sepa-box p {
    margin-bottom: 0.4rem;
    color: #555;
    font-size: 0.95rem;
}

.sepa-box p:last-child {
    margin-bottom: 0;
}

.form-group .field-error {
    color: #c0392b;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.mail-form-offscreen {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin: 0 0 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: left;
}

.form-status p {
    margin-bottom: 0.75rem;
}

.form-status p:last-child {
    margin-bottom: 0;
}

.form-status-error {
    background-color: #fdecea;
    border: 1px solid #f5c2c0;
    color: #c0392b;
}

.form-status-error .btn {
    margin-top: 0.25rem;
}

.form-success {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.form-success-icon {
    color: #6b8a6b;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #6b8a6b;
    margin-bottom: 0.75rem;
}

.form-success p {
    color: #555;
    margin-bottom: 0;
}

.form-submit .btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #6b8a6b;
    margin-bottom: 1.5rem;
}

.membership-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.membership-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.membership-info .info-item i {
    color: #9db89d;
    font-size: 1.1rem;
}

.membership-info .info-item span {
    color: #555;
    font-weight: 500;
}

.membership-form {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #6b8a6b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.form-section h3 i {
    color: #9db89d;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #555;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9db89d;
    box-shadow: 0 0 0 3px rgba(157, 184, 157, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #9db89d;
    border-color: #9db89d;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label span {
    color: #555;
    font-size: 0.95rem;
}

.checkbox-label a {
    color: #9db89d;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #9db89d;
}

.membership-form .checkbox-label {
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.membership-form .checkbox-text {
    flex: 1;
    min-width: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.55;
}

.membership-form .checkbox-text a {
    display: inline;
    color: #6b8a6b;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.membership-form .checkbox-group {
    margin: 0 0 1rem;
}

.membership-form .form-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    max-width: 36rem;
    margin: 1rem auto 0;
    text-align: left;
    line-height: 1.55;
}

.membership-form .form-note i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-card h3 {
    color: #6b8a6b;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-card a {
    color: #9db89d;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-card span {
    color: #555;
    font-weight: 500;
}

.no-results-content i {
    font-size: 3rem;
    color: #9db89d;
    margin-bottom: 1rem;
}

.no-results-content h3 {
    color: #6b8a6b;
    margin-bottom: 1rem;
}

.no-results-content p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #7a9a7a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white !important;
}

.footer-section a:visited {
    color: rgba(255,255,255,0.8) !important;
}

.footer-section a:link {
    color: rgba(255,255,255,0.8) !important;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

.footer-credit {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Footer: Punkt "Informationen" in der Navigation auf Mobil ausblenden */
@media (max-width: 768px) {
    .footer-content .footer-section:nth-child(2) ul li:nth-child(2) {
        display: none;
    }
}

/* Contact Introduction Responsive */
@media (max-width: 768px) {
    .goals-page .page-header h1 {
        font-size: 2.1rem;
    }

    .goals-page .page-header p {
        font-size: 1.05rem;
    }

    .goals-page .mission-content p,
    .goals-page .vision-content p {
        font-size: 1rem;
    }

    .goals-page .goal-card {
        padding: 1.5rem;
    }

    .goals-page .vision-point {
        padding: 1.1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2,
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        border-radius: 12px;
    }
    
    .contact-intro h2 {
        font-size: 2rem;
    }
    
    .contact-intro p {
        font-size: 1.1rem;
    }
    
    .membership-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .steps-cta {
        padding: 2rem;
    }
    
    .steps-cta h3 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1rem;
        justify-content: flex-start;
        z-index: 999;
    }

    .nav-menu-left,
    .nav-menu-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-link-highlight {
        margin-top: 1rem;
        align-self: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
        margin-left: auto;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: auto;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .filter-row {
        grid-template-columns: 1fr;
    }

    .place-actions {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-year {
        align-self: center;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .page-header h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero, .welcome, .history, .goals, .services, .demands, .why-cologne, .contact-cta, .about, .members, .newsletter, .newsletter-archive, .contact, .faq, .steps, .available-places, .search-section, .application-process, .impressum-content, .datenschutz-content, .demands-intro, .impact, .about-section, .features-section, .cta-section {
        padding: 60px 0;
    }

    .press-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .press-embed {
        height: min(90vh, 2000px);
        min-height: 1000px;
    }
    
    /* Responsive improvements for new sections */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .hero h2,
    .hero-lead {
        font-size: 1.1rem;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 1.2rem;
        font-weight: 400;
    }

    
    .hero-features {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .goals-grid,
    .services-grid,
    .reasons-grid,
    .places-grid,
    .steps-grid,
    .newsletter-benefits,
    .archive-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Responsive improvements for new elements */
    .intro-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .intro-subtitle {
        font-size: 1rem;
    }
    
    .demand-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .highlight-icon {
        align-self: center;
    }
    
    .demand-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .demand-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .demand-priority {
        align-self: center;
    }
    
    .amount-highlight {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .amount-highlight-group {
        text-align: left;
        align-items: flex-start;
    }
    
    .amount-highlight-group .amount-highlight-row {
        justify-content: flex-start;
    }
    
    .amount-highlight i {
        transform: rotate(90deg);
    }
    
    .demand-features {
        grid-template-columns: 1fr;
    }
    
    .impact-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .impact-number {
        position: static;
        align-self: center;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Responsive improvements for support section */
    .support-header h2 {
        font-size: 2rem;
    }
    
    .support-header p {
        font-size: 1rem;
    }
    
    
    .support-actions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-action {
        padding: 1.5rem;
    }
    
    .action-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .action-content h3 {
        font-size: 1.2rem;
    }
    
    .action-benefits {
        justify-content: center;
    }
    
    .benefit-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .support-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Responsive improvements for communication channels */
    .communication-channels {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .channel-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .channel-icon {
        align-self: center;
    }
    
    .whatsapp-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .whatsapp-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .whatsapp-info h2 {
        font-size: 2rem;
    }
    
    .whatsapp-info p {
        font-size: 1rem;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .access-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .access-requirements {
        align-items: center;
    }
    
    .access-actions {
        align-items: stretch;
    }
    
    /* Responsive improvements for intro section */
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    .intro-highlights {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 1.2rem;
        font-weight: 700;
    }

    .hero h2,
    .hero-lead {
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 1rem;
        font-weight: 400;
    }
    
    .hero-image img {
        max-height: 250px;
    }


    .page-header h1 {
        font-size: 1.6rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 10px;
    }

    .hero, .welcome, .history, .goals, .services, .demands, .why-cologne, .contact-cta, .about, .members, .newsletter, .newsletter-archive, .contact, .faq, .steps, .available-places, .search-section, .application-process, .impressum-content, .datenschutz-content, .demands-intro, .impact, .about-section, .features-section, .cta-section {
        padding: 40px 0;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .goals-grid,
    .services-grid,
    .reasons-grid,
    .places-grid,
    .steps-grid,
    .newsletter-benefits,
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .place-info {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

    .nav-container {
        padding: 0 10px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .stat-card {
        padding: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* Focus styles */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #9db89d;
    outline-offset: 2px;
}

/* Hero Contact Section */
.hero-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.hero-contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-contact-text h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-contact-text p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-contact-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-contact-stats .stat-item {
    text-align: center;
}

.hero-contact-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #9db89d;
    margin-bottom: 0.5rem;
}

.hero-contact-stats .stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.hero-contact-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Contact Info Section */
.contact-info-section {
    background-color: white;
    padding: 80px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #9db89d;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-link {
    color: #9db89d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #8bb38b;
    text-decoration: underline;
}

.contact-text {
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

/* Contact Form Section */
.contact-form-section,
#contact-form,
section[id*="contact-form"],
section[class*="contact-form"],
form.contact-form {
    display: none !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.contact-form-section .form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-form-section .form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-section .form-header h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-form-section .form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #555;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9db89d;
    box-shadow: 0 0 0 3px rgba(157, 184, 157, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #9db89d;
    border-color: #9db89d;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label span {
    color: #555;
    font-size: 0.95rem;
}

.checkbox-label a {
    color: #9db89d;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 10px;
}

.form-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #9db89d;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-content {
    flex: 1;
}

.faq-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-content h3 {
    margin: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    overflow: visible;
    padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
    color: #666;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    color: #666;
    margin: 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.7;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: #2c3e50;
    font-weight: 600;
}

.faq-toggle {
    color: #9db89d;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

/* Membership Steps Section */
.membership-steps {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.steps-timeline {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(157, 184, 157, 0.3);
}

.step-content {
    flex: 1;
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #9db89d;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-benefits {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.benefit-tag {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    color: #27ae60;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #27ae60;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.feature-item i {
    color: #27ae60;
    font-size: 0.8rem;
}

.membership-cta {
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.membership-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.membership-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-actions .btn-primary {
    background-color: white;
    color: #9db89d;
    border: 2px solid white;
}

.cta-actions .btn-primary:hover {
    background-color: transparent;
    color: white;
}

.cta-actions .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-actions .btn-secondary:hover {
    background-color: white;
    color: #9db89d;
}

/* Contact Map Section */
.contact-map-section {
    background-color: white;
    padding: 80px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.map-details {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.map-details h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.map-address i {
    color: #9db89d;
    font-size: 1.5rem;
}

.map-address p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.map-address span {
    color: #666;
    font-size: 0.9rem;
}

.map-contact {
    margin-bottom: 2rem;
}

.map-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.map-contact .contact-item i {
    color: #9db89d;
    font-size: 1.2rem;
    width: 20px;
}

.map-contact .contact-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.map-contact .contact-item a:hover {
    color: #9db89d;
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-placeholder {
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.map-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.map-placeholder h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.map-placeholder p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.map-placeholder .btn {
    background-color: white;
    color: #9db89d;
    border: 2px solid white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-placeholder .btn:hover {
    background-color: transparent;
    color: white;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .hero-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-contact-text h2 {
        font-size: 2rem;
    }
    
    .hero-contact-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-contact-actions {
        align-items: center;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-section .form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .step-actions {
        justify-content: center;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-actions {
        justify-content: center;
    }
    
    .membership-cta {
        padding: 2rem;
    }
    
    .membership-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-contact-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form-section .form-container {
        padding: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .map-details {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        padding: 2rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .newsletter-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    padding: 1.5rem 2rem;
    border-top: 4px solid #9db89d;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner.hide {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-banner-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(157, 184, 157, 0.3);
}

.cookie-banner-text-content {
    flex: 1;
}

.cookie-banner-text h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-banner-text p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.cookie-banner-text a {
    color: #9db89d;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: #8bb38b;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-banner-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner-buttons .btn-primary {
    background: linear-gradient(135deg, #9db89d, #8bb38b);
    border: none;
    color: white;
}

.cookie-banner-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #8bb38b, #7a9a7a);
}

.cookie-banner-buttons .btn-secondary {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #666;
}

.cookie-banner-buttons .btn-secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.cookie-banner-buttons .btn-outline {
    background: transparent;
    border: 2px solid #9db89d;
    color: #9db89d;
}

.cookie-banner-buttons .btn-outline:hover {
    background: #9db89d;
    color: white;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .cookie-banner-text {
        min-width: 100%;
        flex-direction: row;
    }
    
    .cookie-banner-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.9rem;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-banner-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
