* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #121212;
  background: #f7f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #ffe9c9;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 50px 0 40px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  flex: 0.9;
  background-color: #e9e3d9;
  padding: 14px;
  border-radius: 18px;
}

.hero-visual img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

.section {
  padding: 44px 0;
}

.section.alt {
  background: #ffffff;
}

.columns {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card-image {
  background-color: #dcd3c6;
  border-radius: 12px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2f2;
  font-size: 13px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #1f3b5b;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta.secondary {
  background: #f0d8b4;
  color: #1a1a1a;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-item {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1 1 220px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c8c8;
  font-size: 14px;
}

.footer {
  padding: 32px 0 48px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  width: min(360px, 90%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.wide-image {
  background-color: #e3dccf;
  padding: 14px;
  border-radius: 16px;
}

.wide-image img {
  width: 100%;
  height: 240px;
  border-radius: 12px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
}

.muted {
  color: #4b4b4b;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.ad-note {
  font-size: 12px;
  color: #6a5b44;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.two-col {
  display: flex;
  gap: 24px;
}

.two-col .column {
  flex: 1;
}

.split-highlight {
  background: #f3efe8;
  border-radius: 16px;
  padding: 20px;
}

.text-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
}

.gridless-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery-item {
  flex: 1 1 240px;
  background: #d9d2c5;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 180px;
}

.page-header {
  padding: 40px 0 20px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
