
      :root {
        --color-primary: #005F73; /* Deep, calming blue */
        --color-secondary: #0A9396; /* More vibrant turquoise */
        --color-dark: #052F36; /* Very dark blue-green */
        --color-light: #EEF5F5; /* Very light gray */
        --color-text: #333333; /* Standard text color */
        --color-subtle: #B0C4DE; /* Light blue for subtle backgrounds/borders */

        --font-heading: 'Lora', serif;
        --font-body: 'Open Sans', sans-serif;

        --padding-section: 100px; /* Default section padding */
        --padding-container: 20px; /* Default horizontal padding */
        --max-width-container: 1200px; /* Max width for content */
      }

      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        font-family: var(--font-body);
        color: var(--color-text);
        background-color: var(--color-light);
        line-height: 1.6;
        scroll-behavior: smooth;
      }

      h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-heading);
        color: var(--color-dark);
        margin-bottom: 0.8em;
      }

      h1 { font-size: 3.5em; line-height: 1.1; margin-bottom: 0.5em; }
      h2 { font-size: 2.5em; line-height: 1.2; }
      h3 { font-size: 1.8em; line-height: 1.3; }
      p { margin-bottom: 1em; }
      ul { list-style: disc; margin-left: 20px; margin-bottom: 1em; }
      ul li { margin-bottom: 0.5em; }

      .container {
        max-width: var(--max-width-container);
        margin: 0 auto;
        padding: 0 var(--padding-container);
      }

      section {
        padding: var(--padding-section) 0;
        position: relative;
      }

      /* Buttons */
      .btn {
        display: inline-block;
        padding: 15px 35px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1em;
        transition: all 0.3s ease-in-out;
        text-align: center;
        border: none;
        cursor: pointer;
      }

      .btn-primary {
        background-color: var(--color-primary);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 95, 115, 0.3);
      }

      .btn-primary:hover {
        background-color: var(--color-secondary);
        box-shadow: 0 8px 20px rgba(10, 147, 150, 0.4);
        transform: translateY(-2px);
      }

      .btn-secondary {
        background-color: transparent;
        color: var(--color-primary);
        border: 2px solid var(--color-primary);
        box-shadow: none;
      }

      .btn-secondary:hover {
        background-color: var(--color-primary);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 95, 115, 0.2);
        transform: translateY(-2px);
      }

      /* Header */
      .header {
        background-color: var(--color-dark);
        color: white;
        padding: 15px 0;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 2em;
        font-weight: 700;
        color: white;
        text-decoration: none;
        letter-spacing: -0.03em;
      }

      .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 30px;
      }

      .nav-menu a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05em;
        transition: color 0.3s ease;
        padding: 5px 0;
        position: relative;
      }

      .nav-menu a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--color-secondary);
        transition: width 0.3s ease-out;
      }

      .nav-menu a:hover::after {
        width: 100%;
      }
      .nav-menu a:hover {
        color: var(--color-secondary);
      }

      /* Hero Section */
      .hero-section {
        background-color: var(--color-primary);
        color: white;
        padding-top: calc(var(--padding-section) + 80px); /* Adjust for fixed header */
        padding-bottom: var(--padding-section);
        text-align: center;
        overflow: hidden;
        position: relative;
        background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
      }

      .hero-background-pattern {
        position: absolute;
        inset: 0;
        opacity: 0.15;
        background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1.5" fill="%23FFFFFF" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
        background-size: 50px 50px; /* Adjust pattern density */
        z-index: 0;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
      }

      .hero-content h1 {
        font-size: 4.5em;
        color: var(--color-secondary);
        text-shadow: 0 4px 8px rgba(0,0,0,0.2);
        margin-bottom: 0.3em;
      }

      .hero-content h2 {
        font-size: 2.5em;
        color: white;
        margin-bottom: 1em;
      }

      .hero-content p {
        font-size: 1.3em;
        max-width: 700px;
        color: rgba(255,255,255,0.9);
        margin-bottom: 2em;
      }

      .hero-buttons .btn {
        margin: 0 15px;
      }

      /* Stats Section within Hero */
      .hero-stats-wrapper {
        background-color: rgba(0, 0, 0, 0.3); /* Slightly darker overlay */
        padding: 40px;
        border-radius: 15px;
        margin-top: 60px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        backdrop-filter: blur(5px);
        width: 100%;
        max-width: 400px; /* Constrain width */
        text-align: left; /* Align text within box */
        border: 1px solid rgba(255,255,255,0.1);
      }

      .hero-stats-wrapper h3 {
        color: var(--color-secondary);
        font-size: 1.8em;
        text-align: center;
        margin-bottom: 1.5em;
      }

      .hero-stat-item {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px dashed rgba(255,255,255,0.2);
      }
      .hero-stat-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
      }

      .hero-stat-item .material-icons-outlined {
        font-size: 3.5em;
        color: var(--color-secondary);
        flex-shrink: 0;
      }

      .hero-stat-item .stat-value {
        font-size: 3.2em;
        font-weight: 700;
        color: white;
        line-height: 1;
      }

      .hero-stat-item .stat-label {
        font-size: 1.1em;
        color: rgba(255,255,255,0.7);
        line-height: 1.3;
      }

      /* About Section */
      .about-section {
        background-color: var(--color-light);
        padding-top: var(--padding-section);
        padding-bottom: var(--padding-section);
      }

      .about-content {
        display: flex;
        align-items: center;
        gap: 60px;
      }

      .about-image {
        flex: 1;
        min-width: 300px;
        position: relative;
      }

      .about-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.5s ease;
      }

      .about-image img:hover {
        transform: scale(1.02);
      }

      .about-text {
        flex: 1.2;
      }

      .about-text h2 {
        text-align: left;
        color: var(--color-dark);
        margin-bottom: 1.2em;
      }

      .about-text p {
        font-size: 1.15em;
        color: var(--color-text);
        margin-bottom: 1.5em;
      }

      .about-text h3 {
        color: var(--color-primary);
        font-size: 1.5em;
        margin-bottom: 1em;
      }

      .feature-list .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 1em;
      }

      .feature-list .material-icons-outlined {
        font-size: 2.2em;
        color: var(--color-primary);
        flex-shrink: 0;
      }

      .feature-list p {
        font-size: 1.1em;
        margin-bottom: 0;
      }
      .feature-list p strong {
        color: var(--color-dark);
      }

      /* Philosophy Section */
      .philosophy-section {
        background-color: white;
        padding: var(--padding-section) 0;
        text-align: center;
      }

      .philosophy-section h2 {
        color: var(--color-dark);
        margin-bottom: 0.8em;
      }

      .philosophy-section p.intro-text {
        font-size: 1.2em;
        max-width: 800px;
        margin: 0 auto 60px auto;
        color: var(--color-text);
      }

      .philosophy-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 40px;
      }

      .philosophy-card {
        background-color: var(--color-light);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-top: 5px solid var(--color-primary);
      }

      .philosophy-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      }

      .philosophy-card .material-icons-outlined {
        font-size: 4em;
        color: var(--color-primary);
        margin-bottom: 20px;
      }

      .philosophy-card h3 {
        color: var(--color-dark);
        font-size: 1.6em;
        margin-bottom: 15px;
      }

      .philosophy-card p {
        font-size: 1.05em;
        color: var(--color-text);
        margin-bottom: 0;
      }

      /* Programs Section */
      .programs-section {
        background-color: var(--color-subtle);
        padding: var(--padding-section) 0;
        text-align: center;
      }

      .programs-section h2 {
        color: var(--color-dark);
        margin-bottom: 0.8em;
      }

      .program-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
        margin-top: 40px;
      }

      .program-card {
        background-color: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .program-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
      }

      .program-card .program-number {
        width: 60px;
        height: 60px;
        background-color: var(--color-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2em;
        font-weight: 700;
        margin-bottom: 25px;
      }

      .program-card h3 {
        color: var(--color-dark);
        font-size: 1.7em;
        margin-bottom: 25px;
      }

      .program-card ul {
        list-style: none; /* Remove default list style */
        padding: 0;
        text-align: left;
        width: 100%;
        margin-left: 0;
      }

      .program-card ul li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 1em;
        font-size: 1.05em;
        color: var(--color-text);
      }

      .program-card ul li .material-icons-outlined {
        font-size: 1.8em;
        color: var(--color-primary);
        flex-shrink: 0;
        margin-top: 2px;
      }
      
      /* Why Choose Us Section */
      .values-section {
        background-color: var(--color-light);
        padding: var(--padding-section) 0;
        text-align: center;
      }
      
      .values-section h2 {
        color: var(--color-dark);
        margin-bottom: 0.8em;
      }

      .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-top: 40px;
      }

      .value-card {
        background-color: white;
        padding: 35px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
      }

      .value-card .material-icons-outlined {
        font-size: 4.5em;
        color: var(--color-primary);
        margin-bottom: 20px;
      }

      .value-card h3 {
        color: var(--color-dark);
        font-size: 1.6em;
        margin-bottom: 15px;
      }

      .value-card p {
        font-size: 1.0em;
        color: var(--color-text);
        margin-bottom: 0;
      }

      /* Testimonials Section */
      .testimonials-section {
        background-color: white;
        padding: var(--padding-section) 0;
        text-align: center;
      }

      .testimonials-section h2 {
        color: var(--color-dark);
        margin-bottom: 0.8em;
      }

      .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 40px;
      }

      .testimonial-card {
        background-color: var(--color-light);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
      }

      .testimonial-card .quote-icon {
        font-size: 5em;
        color: var(--color-primary);
        margin-bottom: 15px;
        line-height: 1;
      }

      .testimonial-card p.quote-text {
        font-size: 1.1em;
        color: var(--color-text);
        margin-bottom: 25px;
        font-style: italic;
      }

      .testimonial-card .author {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-primary);
        font-weight: 600;
        font-size: 1.05em;
      }

      .testimonial-card .author .material-icons-outlined {
        font-size: 1.8em;
        margin-right: 10px;
      }

      /* Contact Section */
      .contact-section {
        background-color: var(--color-light);
        padding: var(--padding-section) 0;
        text-align: center;
      }

      .contact-section h2 {
        color: var(--color-dark);
        margin-bottom: 0.8em;
      }

      .contact-section .intro-text {
        font-size: 1.2em;
        max-width: 800px;
        margin: 0 auto 60px auto;
        color: var(--color-text);
      }

      .contact-email-link {
        display: inline-flex;
        align-items: center;
        color: var(--color-primary);
        font-size: 1.4em;
        font-weight: 600;
        text-decoration: none;
        margin-bottom: 60px;
        transition: color 0.3s ease;
      }
      .contact-email-link:hover {
        color: var(--color-secondary);
      }
      .contact-email-link .material-icons-outlined {
        font-size: 1.8em;
        margin-right: 10px;
      }

      .contact-form-wrapper {
        background-color: white;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
      }

      .contact-form-wrapper h3 {
        color: var(--color-dark);
        text-align: center;
        margin-bottom: 40px;
        font-size: 2em;
      }

      .form-group {
        position: relative;
        margin-bottom: 30px;
      }

      .form-input {
        width: 100%;
        padding: 15px 15px 15px 50px; /* Space for icon */
        border: 1px solid var(--color-subtle);
        border-radius: 8px;
        font-size: 1.1em;
        color: var(--color-text);
        background-color: var(--color-light);
        transition: all 0.3s ease;
      }

      .form-input:focus {
        outline: none;
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px rgba(0, 95, 115, 0.2);
        background-color: white;
      }

      .form-input::placeholder {
        color: transparent; /* Hide placeholder for label effect */
      }
      .form-input:focus::placeholder {
        color: var(--color-subtle); /* Show placeholder on focus if needed */
      }

      .form-label {
        position: absolute;
        left: 50px; /* Align with input padding */
        top: 15px;
        font-size: 1.1em;
        color: var(--color-subtle);
        transition: all 0.3s ease;
        pointer-events: none; /* Make label unclickable */
        background-color: white; /* Cover input background under label */
        padding: 0 5px;
        z-index: 1;
      }

      /* Floating Label Effect */
      .form-input:focus + .form-label,
      .form-input:not(:placeholder-shown) + .form-label {
        top: -12px;
        left: 45px; /* Adjust slightly right of icon */
        font-size: 0.85em;
        color: var(--color-primary);
        background-color: white;
        padding: 0 8px;
      }

      .form-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--color-subtle);
        font-size: 1.5em;
        z-index: 2; /* Ensure icon is above label */
      }

      .error-message {
        color: #e74c3c;
        font-size: 0.9em;
        margin-top: 5px;
        text-align: left;
        padding-left: 50px; /* Align with input text */
      }

      .form-submit-button {
        width: 100%;
        padding: 18px 25px;
        font-size: 1.2em;
        margin-top: 20px;
      }

      /* Footer */
     /* Footer Styles - Minimalist */
.footer {
  background-color: var(--color-dark); /* Dunkler Hintergrund für Seriosität */
  color: rgba(255, 255, 255, 0.8); /* Weichere Textfarbe */
  padding: 60px 0 30px 0; /* Mehr vertikaler Raum, weniger unten */
  font-size: 0.95em;
  text-align: center; /* Standardmäßig zentriert */
}

.footer-minimalist-content {
  display: flex;
  flex-direction: column; /* Standardmäßig Spaltenlayout für mobile Geräte */
  align-items: center; /* Inhalt zentrieren */
  gap: 50px; /* Abstand zwischen Hauptbereichen */
  margin-bottom: 50px; /* Abstand zum Copyright-Bereich */
}

@media (min-width: 768px) {
  .footer-minimalist-content {
    flex-direction: row; /* Horizontal auf größeren Bildschirmen */
    justify-content: space-between; /* Abstand gleichmäßig verteilen */
    align-items: flex-start; /* Oben ausrichten */
    text-align: left; /* Text linksbündig */
  }
}

.footer-primary {
  flex-basis: 35%; /* Mehr Platz für Logo und Tagline */
  max-width: 350px; /* Maximale Breite festlegen */
  text-align: center; /* Zentriert auf allen Größen, da es ein Markenbereich ist */
}

@media (min-width: 768px) {
  .footer-primary {
    text-align: left; /* Links auf größeren Bildschirmen */
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.5em; /* Größerer Logotext */
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -0.04em;
  display: block; /* Macht den Link zu einem Blockelement */
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 0;
}

.footer-secondary {
  display: flex;
  flex-direction: column; /* Spaltenlayout für mobile Geräte */
  gap: 40px; /* Abstand zwischen Links und Kontakt */
  flex-grow: 1; /* Nimmt den restlichen Platz ein */
  text-align: center; /* Zentriert auf mobilen Geräten */
}

@media (min-width: 768px) {
  .footer-secondary {
    flex-direction: row; /* Horizontal auf größeren Bildschirmen */
    justify-content: flex-end; /* Nach rechts schieben */
    align-items: flex-start;
    gap: 80px; /* Größerer Abstand zwischen den Gruppen */
    text-align: left; /* Links auf größeren Bildschirmen */
  }
}

.footer-heading {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.35em; /* Etwas größer als zuvor */
  font-weight: 700;
  margin-bottom: 25px; /* Mehr Abstand zur Liste */
  white-space: nowrap; /* Verhindert Zeilenumbruch bei Überschriften */
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px; /* Einheitlicher Listenabstand */
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-flex; /* Für Icon und Text in einer Linie */
  align-items: center;
  font-size: 1.05em;
}

.footer-link:hover {
  color: var(--color-secondary); /* Akzentfarbe beim Hover */
  transform: translateX(5px); /* Leichte Bewegung beim Hover */
}

.footer-link-icon {
  font-size: 1.1em; /* Icon-Größe */
  margin-right: 10px; /* Abstand zum Text */
  color: var(--color-secondary); /* Icons in Akzentfarbe */
}

.footer-contact-info {
  display: inline-flex; /* Für Icon und Text in einer Linie */
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-contact-info .footer-link { /* Spezifisch für den E-Mail-Link im Kontaktbereich */
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}
.footer-contact-info .footer-link:hover {
    color: var(--color-secondary);
}

.footer-social-links {
  display: flex;
  justify-content: center; /* Zentriert auf mobilen Geräten */
  gap: 15px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .footer-social-links {
    justify-content: flex-start; /* Links auf größeren Bildschirmen */
  }
}

.social-icon-link {
  color: white;
  font-size: 1.8em; /* Größe der Social Icons */
  transition: color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.social-icon-link:hover {
  color: var(--color-secondary);
  transform: translateY(-3px);
}

.footer-copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Dünnere Trennlinie */
  padding-top: 30px;
  text-align: center;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Anpassungen für kleine Bildschirme */
@media (max-width: 767px) {
  .footer-minimalist-content {
    flex-direction: column;
    gap: 40px;
  }
  .footer-primary,
  .footer-links-group,
  .footer-contact-group {
    width: 100%;
    max-width: 300px; /* Begrenzung für mobile Abschnitte */
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Zentriert für alle Elemente auf mobilen Geräten */
  }
  .footer-links-list, .footer-contact-info {
    align-items: center; /* Listeninhalte und Kontaktinfos zentrieren */
    justify-content: center;
  }
  .footer-logo {
    text-align: center;
  }
}

      /* Loader/Spinner */
      #spinner {
        position: fixed;
        inset: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        transition: opacity 0.5s ease-in-out;
        opacity: 1;
      }
      #spinner.hidden {
        opacity: 0;
        pointer-events: none; /* Make it unclickable when hidden */
      }
      .spinner-border {
        width: 3rem;
        height: 3rem;
        border: 4px solid var(--color-primary);
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 1s linear infinite;
      }
      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }
      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
      }


      /* Cookie Banner */
      .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--color-dark);
        color: white;
        padding: 30px;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
        transition: transform 0.5s ease-out;
        transform: translateY(100%); /* Start off-screen */
      }
      .cookie-banner.show {
        transform: translateY(0); /* Slide in */
      }

      .cookie-banner-content {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap; /* Allow wrapping on small screens */
      }

      .cookie-banner .material-icons {
        font-size: 3.5em;
        color: var(--color-primary);
        flex-shrink: 0;
      }

      .cookie-banner h3 {
        font-family: var(--font-heading);
        font-size: 1.8em;
        color: white;
        margin-bottom: 0;
      }

      .cookie-banner p {
        font-size: 1.05em;
        color: rgba(255,255,255,0.8);
        margin: 0;
      }

      .cookie-banner p a {
        color: var(--color-secondary);
        text-decoration: underline;
      }
      .cookie-banner p a:hover {
        color: white;
      }

      .cookie-banner-actions {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .cookie-banner .btn {
        padding: 12px 30px;
        font-size: 1em;
      }

      .cookie-banner .btn-accept {
        background-color: var(--color-secondary);
        color: white;
      }
      .cookie-banner .btn-accept:hover {
        background-color: var(--color-primary);
      }

      .cookie-banner .btn-decline {
        background-color: rgba(255,255,255,0.2);
        color: white;
      }
      .cookie-banner .btn-decline:hover {
        background-color: rgba(255,255,255,0.3);
      }

      /* Back to Top Button */
      .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: var(--color-primary);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8em;
        box-shadow: 0 5px 15px rgba(0, 95, 115, 0.3);
        transition: all 0.3s ease;
        z-index: 999;
        text-decoration: none; /* Remove underline */
        opacity: 0; /* Hidden by default */
        pointer-events: none; /* Prevents clicks when hidden */
      }

      .back-to-top.show {
        opacity: 1;
        pointer-events: auto; /* Enable clicks when shown */
        transform: translateY(0);
      }

      .back-to-top:hover {
        background-color: var(--color-secondary);
        box-shadow: 0 8px 20px rgba(10, 147, 150, 0.4);
        transform: translateY(-3px);
      }

      /* Responsive Adjustments */
      @media (max-width: 1024px) {
        :root {
            --padding-section: 80px;
        }
        .header-content {
          flex-direction: column;
          text-align: center;
        }
        .nav-menu ul {
          margin-top: 15px;
          flex-wrap: wrap;
          justify-content: center;
          gap: 20px;
        }
        .hero-section {
          padding-top: calc(var(--padding-section) + 100px); /* More space for stacked header */
        }
        .hero-content h1 { font-size: 3.5em; }
        .hero-content h2 { font-size: 2em; }
        .hero-content p { font-size: 1.15em; }
        .hero-buttons .btn { margin: 10px 10px; }
        .hero-stats-wrapper { max-width: 350px; margin-top: 40px; }
        .hero-stat-item .stat-value { font-size: 2.8em; }
        .hero-stat-item .material-icons-outlined { font-size: 3em; }

        .about-content {
          flex-direction: column;
        }
        .about-text h2 { text-align: center; }

        .philosophy-grid, .program-grid, .values-grid, .testimonial-grid {
          grid-template-columns: 1fr;
        }

        .contact-form-wrapper { padding: 30px; }
        .form-input { padding: 12px 12px 12px 45px; }
        .form-label { left: 45px; top: 12px; }
        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label { left: 40px; }
        .form-icon { left: 12px; }

        .footer-grid {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .footer-brand .logo, .footer-section h5 {
            text-align: center;
        }
        .footer-section ul {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .footer-contact-info {
            justify-content: center;
        }

        .cookie-banner {
            padding: 25px;
        }
        .cookie-banner h3 {
            font-size: 1.5em;
        }
        .cookie-banner p {
            font-size: 0.95em;
        }
      }

      @media (max-width: 768px) {
        :root {
            --padding-section: 60px;
            --padding-container: 15px;
        }
        h1 { font-size: 2.8em; }
        h2 { font-size: 2em; }
        h3 { font-size: 1.5em; }
        p { font-size: 1em; }

        .btn {
            padding: 12px 25px;
            font-size: 1em;
        }
        .hero-section {
          padding-top: calc(var(--padding-section) + 80px); /* Even more space */
        }
        .hero-content h1 { font-size: 3em; }
        .hero-content h2 { font-size: 1.8em; }
        .hero-content p { font-size: 1em; }
        .hero-stats-wrapper { padding: 30px; margin-top: 30px; }
        .hero-stat-item .stat-value { font-size: 2.5em; }
        .hero-stat-item .material-icons-outlined { font-size: 2.5em; }

        .about-content, .philosophy-grid, .program-grid, .values-grid, .testimonial-grid {
          gap: 30px;
        }

        .philosophy-card, .program-card, .value-card, .testimonial-card {
            padding: 30px;
        }

        .contact-form-wrapper { padding: 25px; }
        .contact-email-link { font-size: 1.2em; margin-bottom: 40px;}
        .form-submit-button { padding: 15px 20px; font-size: 1.1em; }
      }

 /* Main Content Area */
.main-content-area {
  /* Passt den oberen Abstand an den festen Header an */
  padding-top: calc(var(--padding-section) + 50px); 
  padding-bottom: 50px;
  background-color: var(--color-light); /* Hintergrundfarbe der Hauptinhaltsbereiche */
}

/* Content Card - der weiße Kasten, der den Inhalt umgibt */
.content-card {
  background-color: white; /* Weißer Hintergrund für den Inhalt */
  padding: 50px; /* Großzügiger Innenabstand */
  border-radius: 10px; /* Abgerundete Ecken */
  box-shadow: 0 8px 30px rgba(0,0,0,0.08); /* Dezenter Schatten für Tiefe */
}

/* Überschrift H1 im Content Card */
.content-card h1 {
  font-size: 2.8em; /* Etwas kleinere Schriftgröße für Überschriften auf rechtlichen Seiten */
  color: var(--color-dark); /* Dunkle Textfarbe für Überschriften */
  text-align: center; /* Überschrift zentrieren */
  margin-bottom: 1em; /* Abstand nach unten */
}

/* Überschrift H2 im Content Card */
.content-card h2 {
  font-size: 1.8em; /* Schriftgröße für Unterabschnitte */
  color: var(--color-primary); /* Primärfarbe für klare Abgrenzung */
  margin-top: 1.5em; /* Abstand zum vorherigen Element */
  margin-bottom: 0.8em; /* Abstand zum nachfolgenden Text */
}

/* Absätze im Content Card */
.content-card p {
  font-size: 1.1em; /* Gute Lesbarkeit für Fließtext */
  color: var(--color-text); /* Standard-Textfarbe */
  margin-bottom: 1em; /* Abstand nach unten */
}

/* Ungeordnete Listen im Content Card */
.content-card ul {
  list-style: disc; /* Klassische Aufzählungszeichen */
  margin-left: 30px; /* Einrückung der Liste */
  margin-bottom: 1em; /* Abstand nach unten */
}

/* Listenelemente in ungeordneten Listen */
.content-card ul li {
  font-size: 1.05em; /* Schriftgröße der Listenelemente */
  color: var(--color-text); /* Standard-Textfarbe */
  margin-bottom: 0.6em; /* Abstand zwischen Listenelementen */
}

/* Links im Content Card */
.content-card a {
  color: var(--color-primary); /* Primärfarbe für Links */
  text-decoration: none; /* Keine Unterstreichung standardmäßig */
  transition: color 0.3s ease; /* Sanfter Farbübergang beim Hover */
}

/* Links im Content Card beim Hover */
.content-card a:hover {
  color: var(--color-secondary); /* Akzentfarbe beim Hover */
  text-decoration: underline; /* Unterstreichung beim Hover */
}

/* Responsive Anpassungen für verschiedene Bildschirmgrößen */
@media (max-width: 1024px) {
  .main-content-area {
      /* Anpassung des oberen Abstands für gestapelten Header auf Tablets */
      padding-top: calc(var(--padding-section) + 80px); 
  }
  .content-card { 
      padding: 40px; /* Etwas weniger Padding auf Tablets */
  }
  .content-card h1 { 
      font-size: 2.2em; /* Kleinere H1 auf Tablets */
  }
  .content-card h2 { 
      font-size: 1.6em; /* Kleinere H2 auf Tablets */
  }
  .content-card p { 
      font-size: 1.05em; /* Leichte Anpassung des Fließtextes auf Tablets */
  }
}

@media (max-width: 768px) {
  .main-content-area {
      /* Weitere Anpassung des oberen Abstands für mobile Ansicht */
      padding-top: calc(var(--padding-section) + 60px); 
  }
  .content-card { 
      padding: 30px; /* Noch weniger Padding auf mobilen Geräten */
  }
  .content-card h1 { 
      font-size: 1.8em; /* Kleinere H1 auf mobilen Geräten */
  }
  .content-card h2 { 
      font-size: 1.4em; /* Kleinere H2 auf mobilen Geräten */
  }
  .content-card p { 
      font-size: 1em; /* Angepasster Fließtext auf mobilen Geräten */
  }
}

/* Main Content Area */
.main-content-area {
  /* Passt den oberen Abstand an den festen Header an */
  padding-top: calc(var(--padding-section) + 50px); 
  padding-bottom: 50px;
  background-color: var(--color-light); /* Hintergrundfarbe der Hauptinhaltsbereiche */
}

/* Content Card - der weiße Kasten, der den Inhalt umgibt */
.content-card {
  background-color: white; /* Weißer Hintergrund für den Inhalt */
  padding: 50px; /* Großzügiger Innenabstand */
  border-radius: 10px; /* Abgerundete Ecken */
  box-shadow: 0 8px 30px rgba(0,0,0,0.08); /* Dezenter Schatten für Tiefe */
}

/* Überschrift H1 im Content Card */
.content-card h1 {
  font-size: 2.8em; /* Schriftgröße für die Hauptüberschrift dieser Seite */
  color: var(--color-dark); /* Dunkle Textfarbe für Überschriften */
  text-align: center; /* Überschrift zentrieren */
  margin-bottom: 1em; /* Abstand nach unten */
}

/* Überschrift H2 im Content Card (für Unterabschnitte wie "1. Erfassung von Informationen") */
.content-card h2 {
  font-size: 1.8em; /* Schriftgröße für Unterabschnitte */
  color: var(--color-primary); /* Primärfarbe für klare Abgrenzung */
  margin-top: 1.5em; /* Abstand zum vorherigen Element */
  margin-bottom: 0.8em; /* Abstand zum nachfolgenden Text */
}

/* Absätze im Content Card */
.content-card p {
  font-size: 1.1em; /* Gute Lesbarkeit für Fließtext */
  color: var(--color-text); /* Standard-Textfarbe */
  margin-bottom: 1em; /* Abstand nach unten */
}

/* Ungeordnete Listen im Content Card */
.content-card ul {
  list-style: disc; /* Klassische Aufzählungszeichen */
  margin-left: 30px; /* Einrückung der Liste */
  margin-bottom: 1em; /* Abstand nach unten */
}

/* Listenelemente in ungeordneten Listen */
.content-card ul li {
  font-size: 1.05em; /* Schriftgröße der Listenelemente */
  color: var(--color-text); /* Standard-Textfarbe */
  margin-bottom: 0.6em; /* Abstand zwischen Listenelementen */
}

/* Strong-Tags innerhalb von Listenelementen (z.B. für "Recht auf Auskunft:") */
.content-card ul li strong {
  color: var(--color-dark); /* Dunkler für Hervorhebung */
}

/* Links im Content Card */
.content-card a {
  color: var(--color-primary); /* Primärfarbe für Links */
  text-decoration: none; /* Keine Unterstreichung standardmäßig */
  transition: color 0.3s ease; /* Sanfter Farbübergang beim Hover */
}

/* Links im Content Card beim Hover */
.content-card a:hover {
  color: var(--color-secondary); /* Akzentfarbe beim Hover */
  text-decoration: underline; /* Unterstreichung beim Hover */
}

/* Responsive Anpassungen für verschiedene Bildschirmgrößen */
@media (max-width: 1024px) {
  .main-content-area {
      /* Anpassung des oberen Abstands für gestapelten Header auf Tablets */
      padding-top: calc(var(--padding-section) + 80px); 
  }
  .content-card { 
      padding: 60px; /* Etwas weniger Padding auf Tablets */
  }
  .content-card h1 { 
      font-size: 2.2em; /* Kleinere H1 auf Tablets */
  }
  .content-card h2 { 
      font-size: 1.6em; /* Kleinere H2 auf Tablets */
  }
  .content-card p { 
      font-size: 1.05em; /* Leichte Anpassung des Fließtextes auf Tablets */
  }
}

@media (max-width: 768px) {
  .main-content-area {
      /* Weitere Anpassung des oberen Abstands für mobile Ansicht */
      padding-top: calc(var(--padding-section) + 60px); 
  }
  .content-card { 
      padding-top: 80px; /* Noch weniger Padding auf mobilen Geräten */
  }
  .content-card h1 { 
      font-size: 20px; /* Kleinere H1 auf mobilen Geräten */
  }
  .content-card h2 { 
      font-size: 1.4em; /* Kleinere H2 auf mobilen Geräten */
  }
  .content-card p { 
      font-size: 20px; /* Angepasster Fließtext auf mobilen Geräten */
  }
}