
    :root {
      --primary-color: #e69a18;
      --bg-dark: #111111;
      --bg-light: #111111;
      --text-white: #ffffff;
      --text-gray: #7a7878;
      --text-123: #9b9898;
    }

    body {
      display: flex;
      flex-direction: column;
      margin: 0;
      padding: 0;
      background-color: var(--bg-dark);
      color: var(--text-white);
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      line-height: 1.6;
      scroll-behavior: smooth;
      min-height: 100vh;
    }

    /* Navigation */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 5%;
      background-color: rgba(17, 17, 17, 0.95);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid #222;
    }

    .content {
      flex: 1;
    }

    .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Neue Regel für das Logo-Bild */
.logo img {
  height: 40px;    /* Hier kannst du die Höhe deines Logos bestimmen */
  width: auto;     /* Behält das Seitenverhältnis bei */
  display: block;  /* Entfernt unschöne Abstände unter dem Bild */
}

.logo img:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

    .nav-buttons {
      display: flex;
      gap: 12px;
    }

    button {
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      font-size: 0.85rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-filled {
      background-color: var(--primary-color);
      color: white;
    }

    .btn-filled:hover {
      background-color: #c48212;
      transform: translateY(-2px);
    }

    .btn-outline {
      background-color: transparent;
      color: white;
      border: 1px solid white;
    }

    .btn-outline:hover {
      background-color: #c48212;
      color: white;
      transform: translateY(-2px);
    }

    .mobile-menu-button {
      display: none;
      font-size: 2rem;
      color: white;
      cursor: pointer;
    }

    .mobile-menu {
      position: fixed;
      top: 72px;
      left: -250px;
      width: 220px;
      background: #1b1b1b;
      transition: left 0.3s ease;
      z-index: 2000;
      border: 1px solid #333;
      padding: 0; 
      display: flex;
      flex-direction: column;
      align-items: stretch; 
    }

    .mobile-menu a {
  
      display: flex;  
      align-items: center;
      justify-content: center;
      width: 100%; 
      box-sizing: border-box; 
      padding: 20px; 
      color: white;
      text-decoration: none;
      font-size: 1.1rem;
      border-bottom: 1px solid #333;
      text-align: center;
    }

    .mobile-menu a:hover {
      background: #2a2a2a;
    }

    /* Menü aktiv */
    .mobile-menu.active {
      left: 0;
    }

    /* Main Content */
    main {
      width: 100%;
    }

    .hero-section {
      margin-top: -65px;
      padding-top: 0px;
      padding-bottom: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: auto;
      border-bottom: 2px solid #222;
    }
   

    .title {
      font-size: clamp(2rem, 8vw, 3.5rem);
      font-weight: bold;
      color: var(--primary-color);
      line-height: 1.1;
      margin-bottom: 20px;
      margin-top: 0px;
    }

    .subtitle {
      color: var(--text-123);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Background Sections */
    .background-section {
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 100px 5%;
      position: relative;
    }

    /* Fallback für Mobile (Fixed Background Support) */
  

    .background-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.75);
      z-index: 1;
    }

    .background-section > * {
      position: relative;
      z-index: 2;
    }

    .bg-1 {
      background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&q=80&w=1920');
    }

    .flex-sections {
      display: flex;
      flex-direction: column;
      gap: 80px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section {
      max-width: 600px;
    }

    .section.left {
      align-self: flex-start;
      text-align: left;
    }

    .section.right {
      align-self: flex-end;
      text-align: right;
    }

    .section h2 {
      color: var(--primary-color);
      font-size: 1.8rem;
      margin-bottom: 20px;
      position: relative;
    }

    .section p {
      font-size: 1.1rem;
      color: #e0e0e0;
    }

    /* Footer / CTA */
    .cta-area {
      padding: 30px 20px;
      text-align: center;
      background-color: var(--bg-light);
    }

    footer {
      text-align: center;
      padding: 10px 10px;
      font-size: 0.8rem;
      color: #555;
      border-top: 1px solid #222;
      margin-top:auto;
     
    }

    @media (max-width: 768px) {
      

      .section.left, .section.right {
        align-self: center;
        text-align: center;
      }

      .title {
        margin-top: 20px;
      }
      .background-section {
        background-attachment: scroll;
      }
      /* Desktop Buttons verstecken */
      .nav-buttons {
        display: none;
      }

  /* Hamburger anzeigen */
      .mobile-menu-button {
        display: block;
      }

      .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }

      header {
        padding: 5px 5%;
        position: sticky;
        min-height: 60px;
        top: 0;
      }

    .hero-section {
      margin-top: -65px;
     border-bottom: 3px solid #222;
    }
  }