* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2428;
  background-color: #f6f3ee;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  background: #1f2428;
  color: #f6f3ee;
  padding: 6px 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 6vw 40px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: center;
}

.hero-text h1 {
  font-size: 38px;
  margin: 0;
  line-height: 1.1;
}

.hero-text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  min-height: 320px;
}

.hero-media .media {
  height: 100%;
}

.section {
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.offset {
  background: #ffffff;
  margin: 0 6vw;
  padding: 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transform: translateY(-18px);
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section.split .text-block {
  flex: 1 1 280px;
}

.section.split .media {
  flex: 1 1 260px;
  min-height: 240px;
}

.section.stacked {
  background: #efe9e2;
  border-radius: 28px;
  margin: 0 6vw 32px;
  padding: 32px;
}

.section.stacked .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.card .price {
  font-weight: 700;
  font-size: 16px;
}

.media {
  background-color: #d9d1c7;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #1f2428;
  color: #f6f3ee;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: #ffffff;
  color: #1f2428;
  border: 1px solid #1f2428;
}

.btn:hover,
.btn:focus,
.link-inline:hover,
.link-inline:focus {
  opacity: 0.85;
}

.link-inline {
  font-weight: 600;
  text-decoration: underline;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-size: 14px;
  font-weight: 600;
}

.form-shell input,
.form-shell select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b9;
  font-size: 14px;
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial span {
  font-size: 13px;
  color: #4c545a;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 16px;
  background: #ffdd88;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

footer {
  margin-top: auto;
  padding: 28px 6vw 40px;
  background: #1f2428;
  color: #f6f3ee;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  z-index: 30;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 220px;
  font-size: 13px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
}

.page-hero {
  padding: 30px 6vw 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-size: 30px;
}

.list-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.list-columns > div {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
}

.notice {
  background: #fff4d6;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion button {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c2b9;
  background: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.accordion .panel {
  padding: 12px 14px;
  border-radius: 12px;
  background: #ffffff;
  display: none;
  border: 1px solid #c9c2b9;
}

.accordion .panel.is-open {
  display: block;
}
