/* Grundlegendes Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #222;
    padding: 0;
  }
  
  /* Header */
  header {
    background-color: #1c1c1c;
    color: #fff;
    padding: 1rem;
    text-align: center;
  }
  
  header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Hauptinhalt */
  main {
    padding: 2rem;
  }
  
  .hero {
    background-color: #eaeaea;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .content h3 {
    margin-bottom: 1rem;
  }
  
  .content ul {
    list-style: disc;
    padding-left: 1.5rem;
  }
  
  /* Footer */
  footer {
    background-color: #1c1c1c;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }


  #map {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .map-section {
    margin-top: 2rem;
  }


  form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: sans-serif;
  }
  
  label {
    font-weight: bold;
  }
  
  input, select, textarea, button {
    padding: 0.5rem;
    font-size: 1rem;
  }
  
  fieldset {
    border: 1px solid #ccc;
    padding: 1rem;
  }
  
  legend {
    font-weight: bold;
  }
  
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #0d0f0f;
    color: white;
  }

  footer button {
    margin: 10px;
    padding: 10px 20px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

  footer button:hover {
    background-color: #666;
  }

  /* Style für das Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
  }

  .modal h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .modal p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Schließen-Button */
  .modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
  }

  /* Links im Modal */
  .modal a {
    color: #0066cc;
    text-decoration: none;
  }

  .modal a:hover {
    text-decoration: underline;
  }

  
  .popup-content {
    position: relative;
  }
  .close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    cursor: pointer;
  }
  footer button {
    margin: 5px;
  }

  .subtile_button{
    margin: 10px;
    padding: 10px 20px;
    background-color: #0d0f0f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-style:italic;
  }