:root {
    --white: #ffffff;
    --black: #000000;
    --butter-yellow: #FFE14D;
    --gray-light: #f4f4f4;
  }
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
  }
  body {
    background: var(--white);
    color: var(--black);
    scroll-behavior: smooth;
    animation: fadeIn 1.5s ease-in;
    /* Basis Text-Umbruch für alle Geräte */
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Mobile Body Seitenabstände */
  @media screen and (max-width: 768px) {
    body {
      padding: 0 1.5rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    body {
      padding: 0 1rem;
    }
  }
  html {
    scroll-behavior: smooth;
  }  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  header {
    background: var(--white);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  nav a {
    text-decoration: none;
    color: var(--black);
    margin: 0 1rem;
    font-weight: 600;
    position: relative;
  }
  nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--butter-yellow);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
  }
  nav a:hover::after {
    width: 100%;
  }
  
  /* Mobile Navigation Styles */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  /* Mobile Responsive Styles */
  @media screen and (max-width: 768px) {
    .hamburger {
      display: flex;
    }
    
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: var(--white);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      z-index: 999;
      padding: 2rem 0;
    }
    
    .nav-menu.active {
      left: 0;
    }
    
    .nav-menu a {
      margin: 1rem 0;
      font-size: 1.1rem;
      display: block;
      padding: 1rem;
    }
    
    nav {
      padding: 0;
    }
    
    /* Anpassungen für mobile Sections - reduzierte Seitenabstände da body bereits Padding hat */
    section {
      padding: 4rem 0;
    }
    
    /* Erste Sektion auf Mobile - extra Abstand zum Header */
    section#start {
      margin-top: 4rem !important;
      padding-top: 3rem !important;
    }
    
    h2 {
      font-size: 2.2rem;
    }
    
    .grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    /* Mobile Form Adjustments */
    form {
      margin: 0 !important;
    }
    
    /* Mobile Impressum Text Fix */
    section div[style*="max-width"] {
      max-width: 100% !important;
      padding: 0 !important;
      margin: 0 !important;
    }
    
    /* Text-Umbruch für alle Textinhalte */
    section p, section h3, section h4 {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      hyphens: auto !important;
      line-height: 1.6 !important;
    }
    
    /* Links umbrechen */
    section a {
      word-break: break-all !important;
      overflow-wrap: break-word !important;
    }
    
    /* Spezielle Anpassungen für Impressum */
    section[style*="margin-top: 8rem"] {
      margin-top: 6rem !important;
      padding: 2rem 0 !important;
    }
  }
  
  /* Tablet Styles */
  @media screen and (max-width: 1024px) and (min-width: 769px) {
    nav a {
      margin: 0 0.5rem;
      font-size: 0.9rem;
    }
    
    section {
      padding: 5rem 0;
    }
  }
  
  /* Allgemeine Container-Optimierungen für Mobile */
  @media screen and (max-width: 480px) {
    /* Extra kleine Smartphones */
    section {
      padding: 3rem 0 !important;
    }
    
    /* Erste Sektion auf sehr kleinen Bildschirmen */
    section#start {
      margin-top: 5rem !important;
      padding-top: 3.5rem !important;
    }
    
    h2 {
      font-size: 1.8rem !important;
    }
    
    h3 {
      font-size: 1.3rem !important;
    }
    
    h4 {
      font-size: 1.1rem !important;
    }
    
    p {
      font-size: 0.9rem !important;
      line-height: 1.5 !important;
    }
    
    /* Noch strengere Container-Regeln für sehr kleine Bildschirme */
    section div[style*="max-width"] {
      max-width: 100% !important;
      padding: 0 !important;
      margin: 0 auto !important;
    }
  }
  
  .hero {
    background: linear-gradient(135deg, var(--white), var(--gray-light));
    padding: 14rem 2rem 10rem;
    text-align: center;
    background-image: url('https://placehold.co/1600x800');
    background-size: cover;
    background-position: center;
    color: var(--black);
    position: relative;
    overflow: hidden;
  }
  
  /* Mobile Hero Section Anpassungen */
  @media screen and (max-width: 768px) {
    .hero {
      padding: 14rem 0 10rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .hero {
      padding: 12rem 0 8rem;
    }
  }
  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
  }
  .hero > * {
    position: relative;
    z-index: 2;
  }
  .hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: slideDown 1s ease-out;
  }
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeIn 2s ease-in;
  }
  @keyframes slideDown {
    from { transform: translateY(-40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .hero .cta {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    animation: fadeIn 2.5s ease-in;
  }
  .hero .cta a {
    padding: 1rem 2rem;
    border: 2px solid var(--black);
    text-decoration: none;
    color: var(--black);
    background: var(--butter-yellow);
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .hero .cta a:hover {
    background: var(--black);
    color: var(--white);
  }
  section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in;
  }
  
  /* Erste Sektion braucht extra Platz für Fixed Header */
  section#start {
    margin-top: 5rem;
    padding-top: 4rem;
  }
  
  .section-alt {
    background-color: var(--gray-light);
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  .image-box, .video-box {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .image-box:hover, .video-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  .image-box img, .video-box video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
  h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    position: relative;
  }
  h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--butter-yellow);
    margin: 1rem auto 0;
    border-radius: 2px;
  }
  form input, form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--black);
    font-size: 1rem;
  }
  form button {
    background: var(--butter-yellow);
    padding: 1rem;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  form button:hover {
    background: var(--black);
    color: var(--white);
  }
  footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
  }
  
  /* Insights Grid Styles */
  .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .insight-box {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .insight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  .insight-box.square {
    aspect-ratio: 1;
    grid-row: 1;
  }
  
  .insight-box.portrait {
    aspect-ratio: 3/4;
    grid-row: 1 / 3;
  }
  
  .insight-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Performance Slider Styles */
  .performance-slider {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 0;
  }
  
  .performance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .play-icon {
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
    transition: transform 0.3s ease;
  }
  
  .play-icon:hover {
    transform: scale(1.1);
  }
  
  .views {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    white-space: nowrap;
  }
  
  /* Mobile Responsive für neue Elemente */
  @media screen and (max-width: 768px) {
    .insights-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }
    
    .insight-box.square,
    .insight-box.portrait {
      aspect-ratio: 16/9;
      grid-row: auto;
    }
    
    .performance-slider {
      gap: 1.5rem;
      padding: 1.5rem 0;
    }
    
    .play-icon {
      font-size: 1.5rem;
    }
    
    .views {
      font-size: 0.8rem;
    }
  }