/* ========== Local Fonts ========== */
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2'),
         url('fonts/Roboto-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.woff2') format('woff2'),
         url('fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  /* ========== Global Styles ========== */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
  }
  
  body {
    background-color: #fff;
    color: #111;
    line-height: 1.6;
    padding-top: 80px; /* Platz für fixed Header */
  }
  
  .container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  h2 {
    font-weight: 300;
    color: #5E5C5F;
    font-size: 2.4rem;
    line-height: 1.3;
  }
  
  /* ========== Fixed Header ========== */
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  }
  
  .main-header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.1rem;
  }
  
  .logo {
    height: 40px;
    width: auto;
  }
  
  /* ========== Content Sections ========== */
  .setup-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: nowrap;
  }
  
  .column {
    flex: 1 1 50%;
    max-width: 50%;
  }
  
  .column.image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
  }
  
  .column.text h2 {
    margin-bottom: 1rem;
  }
  
  .column.text p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
  }
  
  .logos img {
    height: 32px;
    margin-right: 1rem;
  }
  
  /* ========== Benefits Section ========== */
  .benefits-background {
    background-color: #f7f5f0;
    width: 100%;
    margin-top: -6rem;
  }
  
  .benefits-section {
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .benefits-section h2 {
    margin-bottom: 3rem;
  }
  
  .benefits-boxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .benefit-box {
    flex: 1 1 30%;
    max-width: 30%;
    text-align: left;
  }
  
  .benefit-box img {
    height: 60px;
    margin-bottom: 1rem;
    margin-left: -10px;
  }
  
  .benefit-box h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .benefit-box p {
    font-size: 1rem;
    color: #444;
  }
  
  /* ========== FAQ Section ========== */
  .faq-section {
    margin-top: 4rem;
  }
  
  .faq-section h2 {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .faq-item {
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
  }
  
  .faq-item button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .faq-item button::after {
    content: "+";
    font-size: 1.25rem;
    transition: transform 0.3s;
  }
  
  .faq-item.open button::after {
    content: "–";
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 1rem;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }
  
  .faq-item.open .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 0 1rem 1rem 1rem;
  }
  
  /* ========== Footer ========== */
  .footer-bar {
    background-color: ##fff;
    padding: 1rem 0;
    font-size: 0.9rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  
  .footer-right a {
    color: #111;
    text-decoration: none;
    margin-left: 1rem;
  }
  
  .footer-right a:hover {
    text-decoration: underline;
  }

  #scrollTopBtn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background-color: #EF7907;
    color: #fff;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }
  
  #scrollTopBtn:hover {
    background-color: #d56c05;
  }
  
  #scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
  }
  

  
  /* ========== Responsive ========== */
  @media (max-width: 1024px) {
    .faq-columns {
      grid-template-columns: 1fr;
    }
  
    .benefits-boxes {
      flex-direction: column;
      align-items: center;
    }
  
    .benefit-box {
      max-width: 100%;
      text-align: center;
    }
  
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .setup-box {
      flex-direction: column;
    }
  
    .setup-box.reverse-mobile {
      flex-direction: column-reverse;
    }
  
    .column {
      max-width: 100%;
    }
  
    .logos img {
      margin-bottom: 0.5rem;
    }
  }
  