:root {
      --primary: #335979;
      --accent: #4694d6;
      --light-gray: #dddddd;
      --bg-gray: #f4f4f4;
      --text-dark: #1a1a1a;
      --text-light: #d9d9d9;
      --bg: #ffffff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg);
      color: var(--text-dark);
      line-height: 1.6;
    }

    
    h1, h2 {
      color: var(--primary);
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    h2 {
      font-size: 1.5rem;
      margin-top: 2rem;
    }

    p {
      margin-bottom: 1rem;
    }


    header.nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 2rem;
      background-color: var(--primary);
      color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    a{
      text-decoration: none;
      color: white;
    }
    .logo {
      font-weight: 700;
      font-size: 1.75rem;
    }

    nav {
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      text-decoration: none;
      color: white;
      font-weight: 500;
    }

    nav a:hover {
      color: var(--light-gray);
    }

    .hero {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 5rem 2rem;
      background-color: var(--accent);
      color: white;
    }

    .hero-text {
      max-width: 600px;
    }

    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1.2rem;
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }

    .cta-button {
      background-color: white;
      color: var(--primary);
      padding: 1rem 2.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: background-color 0.3s;
    }

    .cta-button:hover {
      background-color: var(--light-gray);
    }

    .hero-image {
      width: 100%;
      height: auto;
      display: flex;
      justify-content: center;
    }

    .hero-image img {
      max-width: 320px;
      margin-top: 2rem;
    }

    .features {
      padding: 5rem 2rem;
      background-color: var(--primary);
      text-align: center;
      color: white;
    }

    .features h2 {
      font-size: 2.8rem;
      margin-bottom: 2rem;
    }

    .feature-grid {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .feature-card {
      background-color: var(--bg);
      padding: 2.5rem;
      border-radius: 16px;
      width: 280px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s;
      color: var(--text-dark);
    }

    .feature-card:hover {
      transform: translateY(-8px);
    }

    .feature-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .feature-card h3 {
      margin-top: 1rem;
      font-size: 1.3rem;
    }

    .feature-card p {
      margin-top: 0.5rem;
      font-size: 1rem;
    }

    .testimonial {
      background-color: var(--accent);
      color: white;
      padding: 5rem 2rem;
      text-align: center;
    }

    .testimonial h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .testimonial p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.2rem;
    }

    footer {
      background-color: var(--primary);
      color: var(--text-light);
      text-align: center;
      padding: 2rem;
    }

    footer a {
      color: #ffffff;
      text-decoration: underline;
      margin: 0 0.5rem;
    }

    .impressum {
      background-color: var(--accent);
      color: white;
      padding: 2rem;
      text-align: center;
    }

    .impressum a {
      color: #ffffff;
      text-decoration: underline;
    }

.datenschutz {
      background-color: var(--light-gray);
      color: #1a1a1a;
      padding: 2rem;
      font-weight: bold;
}
.uns {
      background-color: var(--accent);
      color: #1a1a1a;
      padding: 10% 20%;
}
 .faq-item {
      border-bottom: 1px solid #ccc;
      padding: 15px 0;
    }
    .question {
      cursor: pointer;
      font-weight: bold;
      position: relative;
      padding-right: 25px;
    }
    .question::after {
      content: '+';
      position: absolute;
      right: 0;
      font-size: 20px;
      transition: transform 0.3s ease;
    }
    .question.active::after {
      content: '−';
      transform: rotate(180deg);
    }
    .answer {
      display: none;
      margin-top: 10px;
      padding-left: 10px;
      color: #fff;
      font-weight: bold;
    }
    .faq {
      background-color: var(--accent);
      color: #1a1a1a;
      padding: 10%;
    }