* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.hero {
  background-image: url("Hero_Meeresbrandung_1920x900_2x.avif");
  background-size: cover;
  background-position: 23% top;
  height: 600px;
  display: flex;
  flex-direction: column;
  color: white;
  margin:0 auto;
  max-width: 1920px;
}

.hero-content {
  max-width: 1640px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}

.logo img {
  height: 130px;
  width: auto;
}

.logo-hero{
  width: 350px;
  margin-bottom: 30px;
}

.hero-spacer {
  flex-grow: 1;
}

.hero-bottom h1 {
  font-size: 56px;
  margin-bottom: 10px;
}

.hero-bottom .subline {
  font-size: 22px;
  margin-bottom: 30px;
}

.intro {
  padding: 80px 0;
  text-align: center;
}

.intro p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #009ee3;
  line-height: 1.4;
}

.cards {
  padding-bottom: 80px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.card {
  background: #fff;
  /*border: 1px solid #eee;*/
  box-shadow: 0 0 10px rgba(0,0,0,.15);
  padding: 40px;
  border-radius: 10px;
  transition: all ease-in-out .2s;
}

.card:hover{
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  transform:translateY(-5px);
}

.card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin-bottom: 40px;
}

.img-funck{
  max-width:250px!important;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #009ee3;
}

.card p {
  margin-bottom: 10px;
  color: #5e5e5d;
}

.card p a{
  color: #009ee3;
  text-decoration: none;
  font-weight: normal;
  transition: color ease-in-out .1s;
}

.card p a:hover{
  color: #85d1f5;
}
.card p span{
  font-weight: bold;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  background: #009ee3;
  color: white;
  text-decoration: none;
  transition: all ease-in-out .1s;
  margin-top: 20px;
}

.button:hover {
  background: #85d1f5;
}

.footer {
  background: #009ee3;
  padding: 40px 0;
  margin-top: 40px;
  text-align: left;
  color: white;
}

.footer h3 {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .hero {
    height: 450px;
  }

  .hero-bottom h1 {
    font-size: 36px;
  }

  .hero-bottom .subline {
    font-size: 18px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 40px;
  }
}
