/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1c2329;
  background: #f6f4f1;
}

a {
  color: #0b5a6a;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 240px;
  background: #11181f;
  color: #f4f1ec;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  line-height: 1.4;
  color: #f0d9b8;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  color: #f4f1ec;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 28px;
  background: #f0d9b8;
  color: #1c2329;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  border: 1px solid #f0d9b8;
  color: #f0d9b8;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 52px 80px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(10, 20, 30, 0.12);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #c7ced4;
}

.inline-section {
  display: flex;
  gap: 28px;
  align-items: center;
}

.inline-section.reverse {
  flex-direction: row-reverse;
}

.inline-image {
  flex: 0 0 40%;
  border-radius: 20px;
  overflow: hidden;
  background: #cbd3d8;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(16, 28, 40, 0.12);
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background: #d8dee4;
}

.section-block {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bg-panel {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 220px;
}

.bg-panel p,
.bg-panel a {
  color: #f0f4f7;
}

.section-highlight {
  background: #0b5a6a;
  color: #ffffff;
}

.section-highlight a {
  color: #f0d9b8;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: #f8f7f4;
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-size: 14px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6dc;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(10, 20, 30, 0.15);
}

.footer {
  background: #11181f;
  color: #f4f1ec;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f0d9b8;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  display: none;
  box-shadow: 0 14px 34px rgba(10, 20, 30, 0.2);
  z-index: 50;
}

.cookie-banner.active {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-image {
  border-radius: 18px;
  overflow: hidden;
  background: #cfd6dc;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid #f0d9b8;
  color: #f0d9b8;
  padding: 8px 14px;
  border-radius: 24px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
  }

  .content {
    padding: 32px 24px 70px;
  }

  .hero,
  .inline-section {
    flex-direction: column;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
  }
}
