/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #004b70 0px, #f4f7fa 200px);
    color: #1a1a1a;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* HEADER */
  .header {
    background-color: #004b70ec;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    transition: background 0.5s ease;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 1rem;
  }
  
  .logo {
    height: 55px;
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.05);
  }
  
  /* NAVIGATION */
  .nav {
    display: flex;
    gap: 1rem;
  }
  
  .nav a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .nav a:hover {
    background-color: #ffffff;
    color: #004a70;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* MENU-KNAPP FOR MOBIL */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  /* INTRO */
  .intro {
    padding: 7rem 0 4rem;
    background-color: #ffffff;
    text-align: center;
    transition: all 0.4s ease-in-out;
  }
  
  .header-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    color: #333;
  }
  
  /* CTA */
  .cta-button {
    background-color: #004a70;
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #00639c;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
  }
  
  /* SECTIONS */
  .section {
    padding: 4rem 0;
  }
  
  .row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .section-img {
    flex: 1 1 40%;
    max-width: 400px;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .section-img:hover {
    transform: scale(1.02);
  }
  
  .text {
    flex: 1 1 55%;
    color: #1a1a1a;
  }
  
  .section h2 {
    font-size: 1.8rem;
    color: #004a70;
    margin-bottom: 1rem;
  }
  
  .section p,
  .section ul {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .section ul {
    padding-left: 1.2rem;
    list-style-type: disc;
  }
  
  .partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .partner-logos img {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .partner-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
  }
  
  /* FOOTER */
  .footer {
    background-color: #004a70;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    margin-top: 4rem;
  }
  
  .footer-links a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: text-decoration 0.3s ease;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .header-inner {
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .logo {
      margin: 0.2rem 0;
    }
  
    .menu-toggle {
      display: block;
      position: absolute;
      top: 1rem;
      right: 1rem;
    }
  
    .nav {
      display: none;
      flex-direction: column;
      gap: 1rem;
      background-color: #004a70;
      padding: 1rem;
      position: relative;
      top: 0;
      width: 100%;
      text-align: center;
      border-radius: 0;
    }
  
    .nav.active {
      display: flex;
    }
  
    .header-title {
      font-size: 1.5rem;
    }
  
    .intro p {
      font-size: 0.95rem;
    }
  
    .row {
      flex-direction: column;
    }
  
    .section-img {
      width: 100%;
      max-width: 100%;
    }
  
    .text {
      text-align: center;
    }
  
    .cta-button {
      width: 100%;
    }
  }