body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
  color: #222;
}

.hero {
    background-image: url('see.jpg');
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    padding: 0 20px;
}

.navigation {
    text-align: center;
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.navigation a {
    margin: 0 20px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.navigation a:hover {
    color: #0066cc;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f5f5f5;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 999;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.text {
  padding: 60px 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.text h2 {
  font-size: 48px;
  margin: 0;
  font-weight: 700;
  color: #222;
  text-align: left;
}

.download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.download-grid a {
  background-color: #003d4d;
  color: #fff;
  padding: 14px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  width: 200px;
  text-align: center;
  transition: background 0.3s ease;
}

.download-grid a:hover {
  background-color: #005a6e;
}

.footer {
  border-top: 1px solid #e0e0e0;
  background-color: #f5f5f5;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 60px;
}

.footer a {
  margin: 0 15px;
  color: #555;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  color: #0066cc;
}

/* -------------------------
   RESPONSIVE ANPASSUNGEN
--------------------------*/

@media (max-width: 768px) {
  
.hero {
    height: auto;
    font-size: 24px;
    padding: 40px 10px;
  }

  .navigation {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navigation a {
    margin: 8px 0;
    font-size: 18px;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .dropdown-content a {
    text-align: center;
    padding: 10px;
  }
  .text {
    padding: 40px 20px 10px;
  }

  .text h2 {
    font-size: 32px;
    text-align: center;
  }

  .download-grid {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }

  .download-grid a {
    width: 90%;
    max-width: 300px;
    font-size: 16px;
  }

  .footer {
    font-size: 13px;
    padding: 15px;
  }

  .footer a {
    display: block;
    margin: 5px 0;
  }
}
