* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #0b4f6c;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 28px 6vw 18px;
  background: #ffffff;
  border-bottom: 1px solid #e5e1da;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #1b1b1b;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #0b4f6c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.menu a {
  padding: 6px 8px;
  border-radius: 6px;
}

.menu a:hover,
.menu a:focus {
  background: #eef5f7;
}

.ad-disclosure {
  font-size: 0.82rem;
  color: #6b6b6b;
  max-width: 220px;
}

.hero {
  padding: 52px 6vw;
  background: #ffffff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel h1,
.panel h2 {
  margin-top: 0;
}

.media {
  flex: 1 1 320px;
  min-width: 280px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #d8e0e6;
  box-shadow: 0 18px 40px rgba(11, 79, 108, 0.12);
  position: relative;
}

.media img {
  width: 100%;
  height: 100%;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.bg-auditorium {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.bg-network {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.section {
  padding: 48px 6vw;
}

.section.light {
  background: #ffffff;
}

.section.warm {
  background: #f0ede7;
}

.section.dark {
  background: #162328;
  color: #f5f3ee;
}

.section.dark a {
  color: #b9e1ef;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}

.tag {
  padding: 6px 12px;
  background: #eef5f7;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #0b4f6c;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #0b4f6c;
  border: 1px solid #0b4f6c;
}

.button:hover,
.button:focus {
  filter: brightness(0.95);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.1);
}

.card-media {
  background-color: #d7dde1;
}

.card-body {
  padding: 18px 20px 22px;
}

.price {
  font-weight: 700;
  color: #0b4f6c;
}

.quote {
  background: #ffffff;
  border-left: 4px solid #0b4f6c;
  padding: 18px 20px;
  border-radius: 12px;
}

.form-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.1);
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-box label {
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6dc;
  font-size: 1rem;
  font-family: inherit;
}

.form-box .form-status {
  font-size: 0.9rem;
  color: #0b4f6c;
}

.inline-image {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.image-frame {
  background-color: #d8e0e6;
  border-radius: 16px;
  overflow: hidden;
}

.inline-image img {
  border-radius: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #4b4b4b;
  background: #f6f1eb;
  border-radius: 12px;
  padding: 16px;
}

footer {
  padding: 30px 6vw 40px;
  background: #10191d;
  color: #d9d5cf;
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-columns div {
  flex: 1 1 220px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d9d5cf;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: 0 12px 28px rgba(11, 79, 108, 0.3);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  color: #1b1b1b;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.page-hero {
  padding: 36px 6vw;
  background: #ffffff;
}

.simple-list {
  padding-left: 18px;
}

@media (max-width: 860px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
