* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a34;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #101820;
  color: #f4f1eb;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #f5c542;
  color: #1c1c1c;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 6px 0;
}

.main {
  flex: 1;
  padding: 40px 56px 96px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  background: #d8d2c9;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 72px 64px;
  color: #0c1014;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.hero h1 {
  font-size: 40px;
  margin: 0;
}

.hero p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #101820;
  color: #f5f5f5;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #f5c542;
  color: #1f2a34;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-text h2 {
  margin-top: 0;
}

.image-frame {
  flex: 1 1 320px;
  background: #d9d6cf;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 24px 50px rgba(12, 16, 20, 0.08);
}

.panel.highlight {
  background: #f1efe9;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #11151a;
}

.panel.highlight .panel-inner {
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
  border-radius: 16px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8cdd2;
  font-size: 15px;
}

.footer {
  border-top: 1px solid #d7d7d7;
  padding-top: 24px;
  font-size: 14px;
  color: #3b3f44;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #f25f3a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #101820;
  color: #f5f5f5;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.note {
  font-size: 14px;
  background: #fff2d0;
  padding: 12px;
  border-radius: 12px;
}

.inline-link {
  color: #0b4f6c;
  text-decoration: underline;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-block {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .main {
    padding: 32px 20px 96px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
