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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  background: #f7f7f7;
  line-height: 1.7;
}

header {
  background: #babab2;
  color: #959191;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 8%;
}

.header-left{
    display:flex;
    align-items:center;
}
.logo{
    width:195px;       /* Logo-Größe */
    height:auto;
    margin-right:20px;
}

.logo-text h1{
    font-size:28px;
    margin:0;
color:#959191;

}

.logo-text p{
    margin-top:4px;
    color:#959191;
    font-size:15px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
}

.hero {
  height: 70vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("images/hero.jpg") center center/cover;

  display: flex;
  align-items: center;

  color: white;
}

.hero-text {
  width: 80%;
  max-width: 1200px;
  margin: auto;
}

.hero h2 {
  font-size: 48px;
}

.hero p {
  margin: 25px 0;
  font-size: 20px;
}

.button {
  display: inline-block;

  padding: 14px 30px;

  background: #c8a55a;
  color: white;

  text-decoration: none;

  border-radius: 5px;
}

.container {
  width: 85%;
  max-width: 1200px;

  margin: 70px auto;
}

.cards {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 25px;

  margin-top: 35px;
}

.card {
  background: white;

  padding: 30px;

  border-radius: 10px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

footer {
  background: #1b3554;
  color: white;

  padding: 35px;

  text-align: center;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  nav {
    margin-top: 20px;
  }

  .hero h2 {
    font-size: 34px;
  }
}
