/* Grundlegende Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #a79eca;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  max-height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Social Media Links */
.social-links a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
}

/* Hauptbereich */
main {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}

main h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4a4a4a;
}

main p {
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Responsives Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    margin-top: 10px;
  }
  
  .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: 0.9rem;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #00aced;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #00aced;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
}
}
