* {
  box-sizing: border-box;
}

:root {
  --navy: #0f1b2a;
  --teal: #1f6f78;
  --sand: #f4f1ec;
  --ink: #1b2430;
  --stone: #d9d2c7;
  --fog: #eef1f4;
  --accent: #f2b880;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--fog);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--navy);
  color: #fff;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ad-label {
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #ffd9b0;
}

.brand-name {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

.tagline {
  margin: 8px 0 0;
  color: #d7e4f2;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  color: #dbe5f1;
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover,
.nav a:focus {
  color: #fff;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  border: none;
  background: var(--accent);
  color: var(--navy);
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.btn:hover,
.btn:focus {
  background: #f6c795;
}

.inline-link {
  color: #ffd9b0;
  text-decoration: underline;
  font-size: 14px;
}

.content {
  flex: 1;
  padding: 40px 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: var(--sand);
  border-radius: 26px;
  padding: 32px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background: #d8d0c4;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(13, 23, 35, 0.08);
}

.panel-image {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background: #d8e0e6;
  min-height: 240px;
}

.panel-image img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(13, 23, 35, 0.08);
}

.card-image {
  border-radius: 16px;
  overflow: hidden;
  background: #dfe7ef;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--teal);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.highlight {
  background: #e9f0f4;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.background-section {
  background-image: url("https://images.unsplash.com/photo-1762427907123-c7ab022a5de7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3a4a5b;
  background-blend-mode: multiply;
  color: #f7f4ef;
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(13, 23, 35, 0.1);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: #4a5a6a;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #cbd5de;
  font-size: 15px;
}

textarea {
  min-height: 120px;
}

.footer {
  margin-top: 20px;
  font-size: 13px;
  color: #586573;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  border: none;
  background: var(--teal);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 27, 42, 0.25);
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #27818b;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(13, 23, 35, 0.18);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}

.accept {
  background: var(--teal);
  color: #fff;
}

.reject {
  background: #dfe5ea;
  color: var(--ink);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(13, 23, 35, 0.08);
}

.note {
  font-size: 13px;
  color: #546170;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 28px 22px 80px;
  }

  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
