Fitmorebags

<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>FitMoreBags – Mehr Platz. Smarter Reisen.</title>
  <style>
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #111111;
    }
    header {
      background: linear-gradient(135deg, #111111, #222222);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }
    header h1 {
      font-size: 3rem;
      margin: 0;
      font-weight: 700;
    }
    header p {
      font-size: 1.25rem;
      margin-top: 10px;
      opacity: 0.9;
    }
    .cta-btn {
      margin-top: 25px;
      background-color: #ff6b35;
      color: white;
      padding: 15px 28px;
      border-radius: 10px;
      font-size: 1.1rem;
      border: none;
      cursor: pointer;
      transition: 0.25s;
    }
    .cta-btn:hover {
      background-color: #ff8c5a;
    }
    .section {
      padding: 60px 20px;
      max-width: 1100px;
      margin: auto;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 25px;
      text-align: center;
    }
    .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }
    .benefit-box {
      background: #f6f6f6;
      padding: 25px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    }
    .benefit-box h3 {
      margin-bottom: 10px;
      font-size: 1.3rem;
    }
    .benefit-box p {
      opacity: 0.8;
    }
    .product-section {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .product-section img {
      width: 100%;
      max-width: 450px;
      border-radius: 14px;
    }
    footer {
      background: #111111;
      color: white;
      padding: 40px;
      text-align: center;
      margin-top: 60px;
    }
  </style>
</head>
<body>

  <header>
    <h1>Packe 50% mehr – ohne zusätzlichen Koffer.</h1>
    <p>Der FitMore™ Rucksack erweitert dein Handgepäck, komprimiert Kleidung und spart Platz wie kein anderer.</p>
    <button class="cta-btn">Jetzt einkaufen</button>
  </header>

  <section class="section">
    <h2 class="section-title">Warum FitMore™?</h2>

    <div class="benefits">
      <div class="benefit-box">
        <h3>💼 50% mehr Volumen</h3>
        <p>Durch intelligente Kompressionstechnologie ohne zusätzliche Pumpe.</p>
      </div>

      <div class="benefit-box">
        <h3>🎒 Perfekt für Handgepäck</h3>
        <p>Entwickelt für Airlines – passt in jedes Kabinenfach.</p>
      </div>

      <div class="benefit-box">
        <h3>⚡ Ultra-robust</h3>
        <p>Wasserfest, langlebig und für jedes Abenteuer geeignet.</p>
      </div>

      <div class="benefit-box">
        <h3>🧳 Perfekte Organisation</h3>
        <p>Getrennte Fächer für Kleidung, Technik und Reisedokumente.</p>
      </div>
    </div>
  </section>

  <section class="section product-section">
    <img src="product-image.jpg" alt="FitMore Rucksack" />

    <div>
      <h2 class="section-title" style="text-align:left;">Der Bestseller</h2>
      <p>Der FitMore™ Rucksack wurde entwickelt, um Reisenden das Leben einfacher zu machen. Kein Quetschen, kein Stress – packe smarter, reise entspannter.</p>
      <button class="cta-btn">Zum Produkt</button>
    </div>
  </section>

  <footer>
    © 2025 FitMoreBags – Smarter Reisen.
  </footer>

</body>
</html>