* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background: #f6f2ee;
  line-height: 1.6;
}

a {
  color: #2d4a66;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2d4a66;
  outline-offset: 2px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f6f2ee;
  border-bottom: 1px solid #e2d8cd;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #6e5f52;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  align-items: center;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 16px;
  background: #f1e8df;
}

.main-nav a:hover {
  background: #e3d5c7;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 6vw;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #d7c7b9;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.hero-content {
  position: relative;
  max-width: 560px;
  background: rgba(246, 242, 238, 0.9);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(40, 30, 20, 0.15);
}

.hero-content h1 {
  margin-top: 0;
  font-size: 38px;
  line-height: 1.2;
}

.hero-content p {
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  background: #2d4a66;
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: #d2b79e;
  color: #2a2017;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: #fff;
}

.section .section-bg {
  position: absolute;
  inset: 0;
  background: #e9ddd1;
  z-index: 0;
  opacity: 0.2;
}

.section .section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: #eadbcf;
  border-radius: 18px;
  overflow: hidden;
}

.split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inline-testimonial {
  background: #efe4da;
  border-radius: 18px;
  padding: 18px;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.benefit {
  flex: 1 1 220px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(30, 20, 10, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(40, 30, 20, 0.12);
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background: #e7d9cc;
}

.card .card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #f5efe9;
  border-radius: 16px;
}

.price-row span {
  font-weight: 600;
}

.form-block {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(40, 30, 20, 0.12);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6c6b8;
  font-size: 14px;
}

.form-actions {
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(20, 10, 0, 0.2);
}

.site-footer {
  background: #1f1a16;
  color: #f2ebe4;
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #f2ebe4;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d6c8bb;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(30, 20, 10, 0.2);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.page-header {
  padding: 60px 6vw 30px;
  background: #efe4da;
}

.page-header h1 {
  margin-top: 0;
  font-size: 34px;
}

.content-wrapper {
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(30, 20, 10, 0.1);
}

.inline-link {
  padding: 2px 6px;
  border-radius: 12px;
  background: #efe4da;
}
