* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: #f0efe9;
  border-bottom: 1px solid #ddd6c7;
  gap: 20px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
}

.ad-label {
  font-size: 13px;
  color: #5a533f;
  background: #efe6d2;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:focus {
  outline: 2px solid #c1a875;
  outline-offset: 2px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 7%;
  gap: 40px;
  background: #1f2a3a;
  color: #f7f1e5;
}

.hero .copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero p {
  margin: 0 0 24px;
  max-width: 520px;
}

.hero .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  background: #d9b877;
  color: #1b1b1b;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  background: transparent;
  border: 1px solid #d9b877;
  color: #f7f1e5;
}

.hero .visual {
  flex: 1 1 340px;
  background: #2f3d54;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.section {
  padding: 70px 7%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.light {
  background: #ffffff;
}

.section.accent {
  background: #efe6d2;
}

.section .text {
  flex: 1 1 320px;
}

.section .visual {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #d8d0c1;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 32px;
}

.inline-cta {
  color: #b07d23;
  font-weight: 600;
  border-bottom: 1px solid #b07d23;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .image-wrap {
  background: #d8d0c1;
  border-radius: 12px;
  overflow: hidden;
}

.card h3 {
  margin: 0;
  font-size: 20px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #1f2a3a;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: #1f2a3a;
  color: #f7f1e5;
  border-radius: 20px;
  padding: 24px;
}

.form-area {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7d0c4;
  font-family: inherit;
  font-size: 15px;
  background: #fbfaf7;
}

.footer {
  margin-top: auto;
  padding: 40px 7%;
  background: #1b1b1b;
  color: #e8e3d7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e8e3d7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #c9c1b1;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #1f2a3a;
  color: #f7f1e5;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1b1b1b;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: none;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.simple-header {
  padding: 50px 7% 20px;
  background: #efe6d2;
}

.simple-header h1 {
  margin: 0;
  font-size: 36px;
}

.simple-content {
  padding: 30px 7% 60px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-blocks {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #f7f6f2;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #ddd6c7;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 34px;
  }

  .section h2 {
    font-size: 26px;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
