* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a33;
  background: #f8f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #12242e;
  color: #f4f6f8;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.brand-tag {
  font-size: 13px;
  color: #c9d2d8;
  margin-top: 8px;
}

.ad-label {
  font-size: 12px;
  background: #1b3442;
  padding: 10px 12px;
  border-radius: 8px;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.side-nav a {
  padding: 6px 0;
}

.sidebar-cta {
  margin-top: auto;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  background: #f1b44c;
  color: #12242e;
}

.btn-outline {
  background: transparent;
  color: #f1b44c;
  border: 1px solid #f1b44c;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header.hero {
  padding: 60px 64px 40px;
  background: #f8f0e6;
}

.hero-content {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
}

.hero-text p {
  margin: 0;
  max-width: 520px;
}

.hero-image {
  flex: 1 1 320px;
}

.section {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #ffffff;
}

.section.alt {
  background: #f2f4f6;
}

.section.dark {
  background: #12242e;
  color: #f4f6f8;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fdfbf7;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card strong {
  font-size: 18px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #0d2f3d;
}

.image-frame {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #dde3e7;
}

.h-360 {
  height: 360px;
}

.h-300 {
  height: 300px;
}

.h-280 {
  height: 280px;
}

.h-220 {
  height: 220px;
}

.h-180 {
  height: 180px;
}

.h-160 {
  height: 160px;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  background: #1a2f3a;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
}

.background-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.background-panel .overlay {
  position: relative;
  padding: 28px;
  max-width: 520px;
}

.form-card {
  background: #fdfbf7;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8d2d8;
  font-size: 14px;
  width: 100%;
  font-family: inherit;
}

.inline-link {
  color: #1a4b62;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1a4b62;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

footer {
  padding: 36px 64px 48px;
  background: #0f1f27;
  color: #d7dee2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.notice {
  font-size: 12px;
  color: #c0c9cf;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  color: #12242e;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .side-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  header.hero,
  .section,
  footer {
    padding: 40px 28px;
  }
}
