* {
  box-sizing: border-box;
}

body {
  margin: 0;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  background: #0c1a2a;
  color: #ececf0;
  line-height: 1.7;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('Bilder/IMG_2308.jpg') center/cover no-repeat;
  filter: blur(10px) brightness(0.6);
  transform: scale(1.03);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  background: linear-gradient(135deg, #1f1f22, #141416);
  border-bottom: 1px solid #2d2d33;
  padding: 48px 0 40px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.05);
}

.top-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(77, 144, 241, 0.14);
  border: 1px solid rgba(77, 144, 241, 0.35);
  color: #4fa8f6;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.1;
  max-width: 850px;
}

.subtitle {
  margin-top: 24px;
  max-width: 800px;
  font-size: 1.15rem;
  color: #d1d1d4;
}

section {
  padding: 70px 0;
}

.section-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #4fa8f6;
  margin-bottom: 14px;
  font-weight: bold;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.intro-text {
  max-width: 900px;
  font-size: 1.08rem;
  color: #d7d7da;
}

.campaigns {
  background: #171719;
  border-top: 1px solid #2b2b2f;
  border-bottom: 1px solid #2b2b2f;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: #141418;
  border: 1px solid #2f2f34;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  min-height: 260px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.card-image {
  width: 100%;
  min-height: 130px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #313139, #222228);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5b5be;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px dashed #3d3d45;
  margin-bottom: 10px;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(77, 144, 241, 0.12);
  border: 1px solid rgba(77, 144, 241, 0.35);
  color: #4fa8f6;
}

.quote-box {
  background: linear-gradient(135deg, #1a1a1d, #101011);
  border: 1px solid #2b2b2f;
  border-radius: 28px;
  padding: 34px;
}

.quote-box blockquote {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  line-height: 1.4;
  color: #f6f6f7;
}

.quote-box p {
  margin-top: 18px;
  color: #b8b8bd;
}

footer {
  border-top: 1px solid #2b2b2f;
  padding: 24px 0;
  background: #1a1a1f;
  color: #9a9aa0;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  header {
    padding: 60px 0 50px;
  }

  section {
    padding: 55px 0;
  }

  .card {
    padding: 20px;
  }

  .quote-box {
    padding: 24px;
  }
}
