* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1d4f5b;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

header {
  padding: 24px 6vw;
  background-color: #f2eee8;
  border-bottom: 1px solid #d7d0c7;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: #734c3a;
  background-color: #f0e4d8;
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 48px 6vw 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.panel {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(31, 31, 31, 0.08);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image,
.inline-image,
.card-image {
  background-color: #e4d8cc;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.inline-image img {
  width: 100%;
  height: 320px;
}

.card-image img {
  width: 100%;
  height: 200px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background-color: #1d4f5b;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background-color: #734c3a;
}

.btn.ghost {
  background-color: transparent;
  border: 1px solid #1d4f5b;
  color: #1d4f5b;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(31, 31, 31, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  color: #1d4f5b;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.background-section {
  background-color: #efe7dd;
  padding: 40px;
  border-radius: 20px;
  color: #2c2c2c;
  position: relative;
  overflow: hidden;
}

.background-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.background-section.one::before {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
}

.background-section.two::before {
  background-image: url("https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=1400&q=80");
}

.background-section > * {
  position: relative;
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9c1b8;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 8px 18px rgba(31, 31, 31, 0.2);
}

footer {
  padding: 32px 6vw 48px;
  background-color: #f2eee8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #d7d0c7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(31, 31, 31, 0.15);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.note {
  font-size: 0.95rem;
  color: #4f4b47;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 280px;
}

.centered {
  text-align: center;
}
