body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #1a202c;
    background: #f9fafb;
    overflow-x: hidden;
  }
  
  html, body {
    width: 100%;
    height: 100%;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: #095ad4;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
    display: inline-block; /* Oder block, damit der Button als Blockelement funktioniert */
    padding: 10px 20px;  /* Falls du den Button größer machen möchtest */
  }
  
  .btn-primary:hover {
    background-color: #1e40af;
    transform: scale(1.05);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 90vh;
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*opacity: 0.3;*/
    top: 0;
    left: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    color: white;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  /* Sections */
  .section {
    padding: 60px 20px;
    text-align: center;
    background: white;
  }
  
  .section:nth-child(even) {
    background: #ebf8ff;
  }
  
  .section h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
  }
  
  .section-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .image-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap; /* falls Bildschirm zu klein ist */
  }
  
  .image-container img {
    flex: 1 1 45%; /* jedes Bild nimmt ca. 45% Platz */
    width: 30%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Features */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (min-width: 768px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .feature-card {
    background: white;
    padding: 20px;
    border: 1px solid #cbd5e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .feature-card:hover {   
    transform: scale(1.05);
    border-color: black;
    border-width: 1px;
    border-style: solid;
  }
  
  
  /* Pricing */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .pricing-card {
    background: white;
    border: 1px solid #cbd5e0;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .pricing-card h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 10px;
  }

  .Price-first {
    font-weight: 700;
  }
  
  .price {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  /* Contact */
  .contact-form {
    margin-top: 20px;
  }
  
  .contact-form input[type="email"] {
    padding: 12px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .whatsapp-link {
    margin-top: 20px;
  }
  
  .whatsapp-link a {
    color: #1e40af;
    text-decoration: underline;
    font-size: 1.2rem;
  }
  
  /* Footer */
  .footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }
  