/* =========================================
       Base Styles
    ========================================== */
    :root {
      --primary: #ff0000;
      --primary-dark: #cc0000;
      --secondary: #2c3e50;
      --text: #333333;
      --light: #f8f9fa;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }
    
    body {
      line-height: 1.6;
      color: var(--text);
      background-color: #fff;
    }

    img {
      max-width: 100%;
      display: block;
    }
    
    /* =========================================
       Header & Navigation
    ========================================== */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      padding: 1rem;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary);
      text-decoration: none;
    }
    
    /* Beispiel für Nav-Links (optional) */
    .nav-links {
      display: flex;
      gap: 1rem;
    }
    
    .nav-links a {
      text-decoration: none;
      color: var(--secondary);
      font-weight: 500;
      transition: color 0.2s ease;
    }
    
    .nav-links a:hover {
      color: var(--primary-dark);
    }
    
    header {
      background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                  url('/IMG/webseitenonlinemarketingofllinewerbung.webp') center / cover no-repeat;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
      padding: 1rem;
    }
    
    /* =========================================
       Main Content
    ========================================== */
    main {
      margin-top: 0rem; /* damit der Inhalt nicht von der festen Nav überlappt wird */
    }
    
    section {
      padding: 5rem 2rem;
    }

    .bg-light {
      background-color: var(--light);
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* =========================================
       Typography
    ========================================== */
    h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--secondary);
    }
    
    h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--secondary);
    }

    p.lead {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }

    .section-intro {
      margin-bottom: 2rem;
      font-size: 1.1rem;
      line-height: 1.6;
    }
    
    /* =========================================
       Buttons
    ========================================== */
    .btn {
      display: inline-block;
      padding: 1rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    
    .btn-primary {
      background: var(--primary);
      color: #ffffff;
    }
    
    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }
    
    /* =========================================
       Grid
    ========================================== */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }
    
    /* =========================================
       Cards
    ========================================== */
    .card {
      background: #ffffff;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    
    .card:hover {
      transform: translateY(-5px);
    }

    /* =========================================
       Header Content
    ========================================== */
    .header-content {
      margin-top: 2rem;
    }

    .header-text {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .header-benefits {
      list-style: none;
      margin-bottom: 1.5rem;
    }

    .header-benefits li {
      margin-bottom: 0.5rem;
    }

    /* =========================================
       Stats Section
    ========================================== */
    .stats {
      background: var(--secondary);
      color: #33333;
      text-align: center;
    }
    
    /* =========================================
       Feature Icons
    ========================================== */
    .feature-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    /* =========================================
       Testimonials
    ========================================== */
    .testimonial {
      text-align: center;
      padding: 2rem;
    }
    
    .testimonial img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin-bottom: 1rem;
      object-fit: cover;
    }

    /* =========================================
       Contact Form
    ========================================== */
    .contact-intro {
      margin-bottom: 2rem;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .contact-benefits {
      list-style: none;
      margin-bottom: 2rem;
    }

    .contact-benefits li {
      margin-bottom: 0.5rem;
    }

    .contact-form {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    label {
      font-weight: 600;
    }

    input,
    textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      margin-top: 0.5rem;
      font: inherit;
    }

    /* =========================================
       Footer
    ========================================== */
    footer {
      text-align: center;
      padding: 1.5rem;
      background-color: var(--secondary);
      color: #ffffff;
    }

    footer p {
      margin-bottom: 0.5rem;
    }

    /* =========================================
       Responsive
    ========================================== */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.5rem;
      }
      
      h2 {
        font-size: 2rem;
      }
      
      section {
        padding: 3rem 1rem;
      }
    }
  </style>