/*
  Datei: main.css
  Zweck: Zentrales Stylesheet mit globalen Reset-Regeln,
         typografischen Einstellungen und Komponenten-Styles.
*/
/* Centralized main.css extracted from HTML style blocks */

@font-face { 
    font-family: 'Inter'; 
    font-style: normal; 
    font-weight: 400; 
    src: url('Inter/Inter-Regular.woff2') format('woff2'); 
    }
    
    :root { 
    --primary: #004aad; /* Zurück zu Dunkelblau */
    --accent: #fc8735; 
    --text: #333; 
    --bg: #fff; 
    --light: #f9f9f9; 
    }
    
    *, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    }
    
    body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text); 
    background: var(--bg); 
    line-height: 1.6;
    font-size: 16px; /* Basis-Schriftgröße definieren */
    }
    
    a { 
    color: var(--accent); 
    text-decoration: none; 
    }
    
    h1, h2, h3, h4, h5, h6 {
    line-height: 1.2; /* Engere Zeilenhöhe für Überschriften */
    }
    
    strong {
    color: var(--accent);
    font-weight: 700;
    }
    
    header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1rem 1.5rem; 
    position: sticky; 
    top: 0; 
    background: var(--bg); 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 100;
    }
    
    .logo-img { 
    max-height: 50px; 
    }
    
    nav a { 
    margin-left: 1rem; 
    font-weight: 600; 
    position: relative; 
    }
    
    nav a.active::after, 
    nav a:hover::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background: var(--accent); 
    }
    
    .btn { 
    background: var(--accent); 
    color: #fff; 
    padding: 0.8rem 1.5rem; 
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .btn:hover {
    background-color: #fff;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    }
    
    .btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    }
    
    .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    }
    
    .btn-primary:hover {
    color: var(--primary);
    }
    
    /* Pulsierender Effekt für wichtige CTAs */
    @keyframes pulse {
    0% {
    box-shadow: 0 0 0 0 rgba(252, 135, 53, 0.7);
    }
    70% {
    box-shadow: 0 0 0 10px rgba(252, 135, 53, 0);
    }
    100% {
    box-shadow: 0 0 0 0 rgba(252, 135, 53, 0);
    }
    }
    
    .btn-pulse {
    animation: pulse 2s infinite;
    }
    
    section { 
    padding: 4rem 1.5rem; /* Mehr vertikaler Abstand zwischen Sektionen */
    }
    
    .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 4rem 1.5rem;
    position: relative;
    }
    
    .hero-content {
    max-width: 800px;
    padding: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    }
    
    .slogan {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    }
    
    .hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--accent);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }
    
    .hero h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    }
    
    .hero-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    }
    
    .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* Größerer Abstand zwischen den Boxen */
    max-width: 1000px;
    margin: 0 auto;
    }
    
    .feature {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%; /* Sorgt für gleiche Höhe bei allen Boxen */
    position: relative;
    padding-top: 3rem; /* Platz für Icon */
    }
    
    .feature h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem; /* Einheitlicher, größerer Abstand */
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent); /* Visuelle Trennung */
    }
    
    .feature p {
    margin-bottom: 1rem; /* Einheitlicher Abstand zwischen Absätzen */
    }
    
    .feature p:last-child {
    margin-bottom: 0; /* Kein Abstand beim letzten Absatz */
    }
    
    .feature h3 span {
    color: var(--accent);
    }
    
    .feature::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .feature-mindset::before {
    content: '🧠'; /* Brain-Emoji für Mindset */
    font-size: 1.8rem;
    line-height: 50px;
    text-align: center;
    }
    
    .feature-action::before {
    content: '🚀'; /* Rocket-Emoji für Action */
    font-size: 1.8rem;
    line-height: 50px;
    text-align: center;
    }
    
    .feature-gift::before {
    content: '🎁'; /* Gift-Emoji */
    font-size: 1.8rem;
    line-height: 50px;
    text-align: center;
    }
    
    .feature-transform::before {
    content: '⚡'; /* Lightning-Emoji */
    font-size: 1.8rem;
    line-height: 50px;
    text-align: center;
    }
    
    .section-title {
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2.5rem;
    }
    
    .section-title span {
    color: var(--accent);
    }
    
    .peak-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    margin-bottom: 2.5rem;
    }
    
    .about {
    background-color: var(--light);
    background-image: radial-gradient(#004aad10 1px, transparent 1px);
    background-size: 20px 20px;
    }
    
    .cta-section {
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 4rem 1.5rem;
    }
    
    /* Modal Styles */
    .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    }
    
    .modal {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
    border-top: 4px solid var(--accent);
    }
    
    @keyframes modalFadeIn {
    from {
    opacity: 0;
    transform: translateY(-20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
    
    .modal-content {
    padding: 2.5rem;
    }
    
    .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #777;
    cursor: pointer;
    transition: color 0.2s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    }
    
    .modal-close:hover {
    color: var(--accent);
    background-color: #f5f5f5;
    }
    
    .modal-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    }
    
    .modal-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text);
    }
    
    .modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    }
    
    .modal-input {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    }
    
    .modal-button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    }
    
    .modal-button:hover {
    background-color: #e67020;
    }
    
    .modal-privacy {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: #777;
    }
    
    /* Altes Cookie Banner ausblenden */
    .cookie-banner {
    display: none;
    }
    
    /* Neues Cookie Banner */
    #cookie-banner-new {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: var(--primary);
    color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 5px solid var(--accent);
    animation: slideUp 0.5s ease-out;
    }
    
    @keyframes slideUp {
    from {
    opacity: 0;
    transform: translate(-50%, 20px);
    }
    to {
    opacity: 1;
    transform: translate(-50%, 0);
    }
    }
    
    .cookie-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    }
    
    .cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    }
    
    .cookie-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
    }
    
    .cookie-text a:hover {
    color: var(--accent);
    }
    
    .cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 0.5rem;
    }
    
    .cookie-btn-new {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    }
    
    .cookie-accept {
    background: var(--accent);
    color: #fff;
    }
    
    .cookie-accept:hover {
    background: #e67020;
    transform: translateY(-2px);
    }
    
    .cookie-more {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    }
    
    .cookie-more:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    }
    
    footer {
    background: var(--light);
    text-align: center;
    padding: 2rem 1.5rem;
    }
    
    /* Responsive Anpassungen */
    @media (max-width: 768px) {
    .features {
    grid-template-columns: 1fr; /* Einspaltiges Layout auf kleineren Bildschirmen */
    }
    
    header {
    flex-direction: column;
    padding: 1rem;
    }
    
    nav {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    }
    
    nav a {
    margin: 0.5rem;
    }
    
    .hero-content {
    padding: 1.5rem;
    }
    
    .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    }
    
    .modal-content {
    padding: 1.5rem;
    }
    
    #cookie-banner-new {
    width: 95%;
    bottom: 10px;
    padding: 1.2rem;
    }
    }
    
    /* Für sehr kleine Bildschirme */
    @media (max-width: 480px) {
    section {
    padding: 2rem 1rem;
    }
    
    .feature {
    padding: 1.5rem;
    }
    
    .hero h1 {
    font-size: 2.2rem;
    }
    
    .hero h2 {
    font-size: 1.8rem;
    }
    
    .slogan {
    font-size: 1.3rem;
    }
    
    .hero-sub {
    font-size: 1.2rem;
    }
    
    .modal-title {
    font-size: 1.5rem;
    }
    
    .modal-subtitle {
    font-size: 1rem;
    }
    
    .modal-button {
    font-size: 1rem;
    padding: 0.8rem;
    }
    
    #cookie-banner-new {
    padding: 1rem;
    }
    
    .cookie-actions {
    flex-direction: column;
    gap: 0.5rem;
    }
    
    .cookie-btn-new {
    width: 100%;
    text-align: center;
    }
    }

@font-face { 
      font-family: 'Inter'; 
      font-style: normal; 
      font-weight: 400; 
      src: url('Inter/Inter-Regular.woff2') format('woff2'); 
    }
    
    :root { 
      --primary: #004aad; /* Zurück zu Dunkelblau */
      --accent: #fc8735; 
      --text: #333; 
      --bg: #fff; 
      --light: #f9f9f9; 
    }
    
    *, *::before, *::after { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
    }
    
    body { 
      font-family: 'Inter', sans-serif; 
      color: var(--text); 
      background: var(--bg); 
      line-height: 1.6;
      font-size: 16px; /* Basis-Schriftgröße definieren */
    }
    
    a { 
      color: var(--accent); 
      text-decoration: none; 
    }
    
    h1, h2, h3, h4, h5, h6 {
      line-height: 1.2; /* Engere Zeilenhöhe für Überschriften */
    }
    
    strong {
      color: var(--accent);
      font-weight: 700;
    }
    
    header { 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      padding: 1rem 1.5rem; 
      position: sticky; 
      top: 0; 
      background: var(--bg); 
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      z-index: 100;
    }
    
    .logo-img { 
      max-height: 50px; 
    }
    
    nav a { 
      margin-left: 1rem; 
      font-weight: 600; 
      position: relative; 
    }
    
    nav a.active::after, 
    nav a:hover::after { 
      content: ''; 
      position: absolute; 
      bottom: 0; 
      left: 0; 
      width: 100%; 
      height: 2px; 
      background: var(--accent); 
    }
    
    .btn { 
      background: var(--accent); 
      color: #fff; 
      padding: 0.8rem 1.5rem; 
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
      border: 2px solid var(--accent);
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .btn:hover {
      background-color: #fff;
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    }
    
    .btn-large {
      padding: 1rem 2rem;
      font-size: 1.2rem;
      font-weight: 700;
    }
    
    .btn-primary {
      background: var(--primary);
      border-color: var(--primary);
    }
    
    .btn-primary:hover {
      color: var(--primary);
    }
    
    /* Pulsierender Effekt für wichtige CTAs */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(252, 135, 53, 0.7);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(252, 135, 53, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(252, 135, 53, 0);
      }
    }
    
    .btn-pulse {
      animation: pulse 2s infinite;
    }
    
    section { 
      padding: 4rem 1.5rem; /* Mehr vertikaler Abstand zwischen Sektionen */
    }
    
    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 80vh;
      background: var(--primary);
      color: #fff;
      text-align: center;
      padding: 4rem 1.5rem;
      position: relative;
    }
    
    .hero-content {
      max-width: 800px;
      padding: 2.5rem;
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      border-left: 4px solid var(--accent);
    }
    
    .slogan {
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #fff;
    }
    
    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1rem;
      color: var(--accent);
      text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }
    
    .hero h2 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #fff;
    }
    
    .hero-sub {
      font-size: 1.5rem;
      font-weight: 600;
      color: #fff;
    }
    
    .features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem; /* Größerer Abstand zwischen den Boxen */
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .feature {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      height: 100%; /* Sorgt für gleiche Höhe bei allen Boxen */
      position: relative;
      padding-top: 3rem; /* Platz für Icon */
    }
    
    .feature h3 {
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 1.25rem; /* Einheitlicher, größerer Abstand */
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--accent); /* Visuelle Trennung */
    }
    
    .feature p {
      margin-bottom: 1rem; /* Einheitlicher Abstand zwischen Absätzen */
    }
    
    .feature p:last-child {
      margin-bottom: 0; /* Kein Abstand beim letzten Absatz */
    }
    
    .feature h3 span {
      color: var(--accent);
    }
    
    .feature::before {
      content: '';
      position: absolute;
      top: -25px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 50px;
      background-color: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .feature-mindset::before {
      content: '🧠'; /* Brain-Emoji für Mindset */
      font-size: 1.8rem;
      line-height: 50px;
      text-align: center;
    }
    
    .feature-action::before {
      content: '🚀'; /* Rocket-Emoji für Action */
      font-size: 1.8rem;
      line-height: 50px;
      text-align: center;
    }
    
    .feature-gift::before {
      content: '🎁'; /* Gift-Emoji */
      font-size: 1.8rem;
      line-height: 50px;
      text-align: center;
    }
    
    .feature-transform::before {
      content: '⚡'; /* Lightning-Emoji */
      font-size: 1.8rem;
      line-height: 50px;
      text-align: center;
    }
    
    .section-title {
      font-size: 1.5rem;
      color: var(--primary);
      text-align: center;
      margin-bottom: 2.5rem;
    }
    
    .section-title span {
      color: var(--accent);
    }
    
    .peak-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent);
      text-align: center;
      margin-bottom: 2.5rem;
    }
    
    .about {
      background-color: var(--light);
      background-image: radial-gradient(#004aad10 1px, transparent 1px);
      background-size: 20px 20px;
    }
    
    .cta-section {
      text-align: center;
      background: var(--primary);
      color: #fff;
      padding: 4rem 1.5rem;
    }
    
    /* Modal Styles */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }
    
    .modal {
      background: #fff;
      width: 90%;
      max-width: 600px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      position: relative;
      animation: modalFadeIn 0.3s ease-out;
      border-top: 4px solid var(--accent);
    }
    
    @keyframes modalFadeIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .modal-content {
      padding: 2.5rem;
    }
    
    .modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 1.5rem;
      color: #777;
      cursor: pointer;
      transition: color 0.2s;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    
    .modal-close:hover {
      color: var(--accent);
      background-color: #f5f5f5;
    }
    
    .modal-title {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    
    .modal-subtitle {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: var(--text);
    }
    
    .modal-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .modal-input {
      padding: 0.8rem 1rem;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 1rem;
      width: 100%;
    }
    
    .modal-button {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 1rem;
      border-radius: 4px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    .modal-button:hover {
      background-color: #e67020;
    }
    
    .modal-privacy {
      font-size: 0.8rem;
      margin-top: 1rem;
      color: #777;
    }
    
    /* Altes Cookie Banner ausblenden */
    .cookie-banner {
      display: none;
    }
    
    /* Neues Cookie Banner */
    #cookie-banner-new {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 500px;
      background: var(--primary);
      color: #fff;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      border-left: 5px solid var(--accent);
      animation: slideUp 0.5s ease-out;
    }
    
    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translate(-50%, 20px);
      }
      to {
        opacity: 1;
        transform: translate(-50%, 0);
      }
    }
    
    .cookie-title {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .cookie-text {
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 0.5rem;
    }
    
    .cookie-text a {
      color: #fff;
      text-decoration: underline;
      font-weight: 600;
      transition: color 0.2s;
    }
    
    .cookie-text a:hover {
      color: var(--accent);
    }
    
    .cookie-actions {
      display: flex;
      justify-content: flex-end;
      gap: 1rem;
      margin-top: 0.5rem;
    }
    
    .cookie-btn-new {
      padding: 0.6rem 1.2rem;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }
    
    .cookie-accept {
      background: var(--accent);
      color: #fff;
    }
    
    .cookie-accept:hover {
      background: #e67020;
      transform: translateY(-2px);
    }
    
    .cookie-more {
      background: transparent;
      color: #fff;
      border: 1px solid #fff;
    }
    
    .cookie-more:hover {
      background: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }
    
    footer {
      background: var(--light);
      text-align: center;
      padding: 2rem 1.5rem;
    }
    
    /* Responsive Anpassungen */
    @media (max-width: 768px) {
      .features {
        grid-template-columns: 1fr; /* Einspaltiges Layout auf kleineren Bildschirmen */
      }
      
      header {
        flex-direction: column;
        padding: 1rem;
      }
      
      nav {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
      
      nav a {
        margin: 0.5rem;
      }
      
      .hero-content {
        padding: 1.5rem;
      }
      
      .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
      }
      
      .modal-content {
        padding: 1.5rem;
      }
      
      #cookie-banner-new {
        width: 95%;
        bottom: 10px;
        padding: 1.2rem;
      }
    }
    
    /* Für sehr kleine Bildschirme */
    @media (max-width: 480px) {
      section {
        padding: 2rem 1rem;
      }
      
      .feature {
        padding: 1.5rem;
      }
      
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .hero h2 {
        font-size: 1.8rem;
      }
      
      .slogan {
        font-size: 1.3rem;
      }
      
      .hero-sub {
        font-size: 1.2rem;
      }
      
      .modal-title {
        font-size: 1.5rem;
      }
      
      .modal-subtitle {
        font-size: 1rem;
      }
      
      .modal-button {
        font-size: 1rem;
        padding: 0.8rem;
      }
      
      #cookie-banner-new {
        padding: 1rem;
      }
      
      .cookie-actions {
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .cookie-btn-new {
        width: 100%;
        text-align: center;
      }
    }

body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #004aad;
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        h1 {
            color: #004aad;
            margin-top: 30px;
        }
        h2 {
            color: #004aad;
            margin-top: 25px;
            border-bottom: 2px solid #fc8735;
            padding-bottom: 5px;
        }
        .back-button {
            display: inline-block;
            background-color: #fc8735;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 20px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .back-button:hover {
            background-color: #e67725;
        }
        footer {
            text-align: center;
            padding: 20px;
            background: #004aad;
            color: #fff;
            margin-top: 40px;
        }
        footer a {
            color: #fc8735;
            text-decoration: none;
            margin: 0 10px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
        }

@font-face { 
      font-family: 'Inter'; 
      font-style: normal; 
      font-weight: 400; 
      src: url('Inter/Inter-Regular.woff2') format('woff2'); 
    }
    
    :root { 
      --primary: #004aad; /* Dunkelblau */
      --accent: #fc8735; /* Orange */
      --text: #333; 
      --bg: #fff; 
      --light: #f9f9f9; 
    }
    
    *, *::before, *::after { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
    }
    
    body { 
      font-family: 'Inter', sans-serif; 
      color: var(--text); 
      background: var(--light); 
      line-height: 1.6; 
      font-size: 16px;
    }
    
    a { 
      color: var(--accent); 
      text-decoration: none; 
    }
    
    h1, h2, h3, h4, h5, h6 {
      line-height: 1.2;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    
    h1 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--primary);
      border-bottom: 3px solid var(--accent);
      padding-bottom: 0.5rem;
      display: inline-block;
    }
    
    h2 {
      font-size: 1.8rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }
    
    h3 {
      font-size: 1.4rem;
      margin-top: 1.5rem;
      color: var(--primary);
    }
    
    p {
      margin-bottom: 1rem;
    }
    
    ul, ol {
      margin-left: 2rem;
      margin-bottom: 1.5rem;
    }
    
    li {
      margin-bottom: 0.5rem;
    }
    
    header { 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      padding: 1rem 1.5rem; 
      position: sticky; 
      top: 0; 
      background: var(--bg); 
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      z-index: 100;
    }
    
    .logo-img { 
      max-height: 50px; 
    }
    
    nav a { 
      margin-left: 1rem; 
      font-weight: 600; 
      position: relative; 
    }
    
    nav a.active::after, 
    nav a:hover::after { 
      content: ''; 
      position: absolute; 
      bottom: 0; 
      left: 0; 
      width: 100%; 
      height: 2px; 
      background: var(--accent); 
    }
    
    .btn { 
      background: var(--accent); 
      color: #fff; 
      padding: 0.8rem 1.5rem; 
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
      border: 2px solid var(--accent);
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .btn:hover {
      background-color: #fff;
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    }
    
    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 2rem 1.5rem;
      background: var(--bg);
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
      border-radius: 8px;
    }
    
    .privacy-content {
      margin-top: 2rem;
    }
    
    .privacy-section {
      margin-bottom: 2.5rem;
    }
    
    .cookie-info {
      background: rgba(0, 74, 173, 0.05);
      padding: 1.5rem;
      border-radius: 8px;
      border-left: 4px solid var(--accent);
      margin: 2rem 0;
    }
    
    footer {
      background: var(--bg);
      text-align: center;
      padding: 2rem 1.5rem;
      margin-top: 2rem;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    }
    
    /* Back button styles */
    .back-button {
      display: inline-flex;
      align-items: center;
      margin-bottom: 1.5rem;
      color: var(--primary);
      font-weight: 600;
      transition: all 0.3s ease;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      border: 2px solid var(--primary);
      background-color: transparent;
    }
    
    .back-button:hover {
      background-color: var(--primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .back-button i {
      margin-right: 0.5rem;
    }
    
    /* Responsive Anpassungen */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        padding: 1rem;
      }
      
      nav {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
      
      nav a {
        margin: 0.5rem;
      }
      
      h1 {
        font-size: 2rem;
      }
      
      h2 {
        font-size: 1.5rem;
      }
      
      .container {
        padding: 1.5rem 1rem;
      }
    }
    
    /* Für sehr kleine Bildschirme */
    @media (max-width: 480px) {
      h1 {
        font-size: 1.8rem;
      }
      
      h2 {
        font-size: 1.3rem;
      }
      
      h3 {
        font-size: 1.1rem;
      }
      
      .container {
        padding: 1rem;
      }
      
      .cookie-info {
        padding: 1rem;
      }
    }

@font-face { 
    font-family: 'Inter'; 
    font-style: normal; 
    font-weight: 400; 
    src: url('Inter/Inter-Regular.woff2') format('woff2'); 
    }
    
    :root { 
    --primary: #004aad; /* Zurück zu Dunkelblau */
    --accent: #fc8735; 
    --text: #333; 
    --bg: #fff; 
    --light: #f9f9f9; 
    }
    
    *, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    }
    
    body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text); 
    background: var(--light); 
    line-height: 1.6; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 16px;
    }
    
    a { 
    color: var(--accent); 
    text-decoration: none; 
    }
    
    header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1rem 1.5rem; 
    background: var(--bg); 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    }
    
    .logo-img { 
    max-height: 50px; 
    }
    
    .confirmation-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    }
    
    .confirmation-box {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    max-width: 600px;
    text-align: center;
    border-top: 4px solid var(--accent);
    width: 90%;
    }
    
    .confirmation-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    }
    
    .confirmation-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    }
    
    .confirmation-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    }
    
    .btn { 
    background: var(--accent); 
    color: #fff; 
    padding: 0.8rem 1.5rem; 
    border-radius: 4px; 
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .btn:hover {
    background-color: #fff;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    }
    
    footer { 
    background: var(--bg); 
    text-align: center; 
    padding: 1.5rem; 
    margin-top: auto;
    }
    
    /* Responsive Anpassungen */
    @media (max-width: 768px) {
    .confirmation-box {
    padding: 2rem;
    margin: 0 1rem;
    }
    
    .confirmation-text {
    font-size: 1rem;
    }
    }
    
    @media (max-width: 480px) {
    .confirmation-box {
    padding: 1.5rem;
    }
    
    .confirmation-icon {
    font-size: 3rem;
    }
    
    .confirmation-title {
    font-size: 1.5rem;
    }
    
    .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    }
    }

