* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f4f0;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #284a63;
  text-decoration: none;
}

a:hover {
  color: #1c3446;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  background-color: #f1ece6;
  border-bottom: 1px solid #e2d8cf;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: #4a4a4a;
  background-color: #efe2d5;
  padding: 6px 10px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 36px 0 18px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero-text p {
  margin-bottom: 18px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.media-frame {
  flex: 1 1 320px;
  background-color: #d9cfc3;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-button,
.cta-outline {
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button {
  background-color: #284a63;
  color: #fff;
  box-shadow: 0 10px 18px rgba(40, 74, 99, 0.18);
}

.cta-outline {
  background-color: #f7f4f0;
  color: #284a63;
  border: 1px solid #284a63;
}

.cta-button:hover,
.cta-outline:hover {
  transform: translateY(-2px);
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin: 28px 0;
  position: relative;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-content h2 {
  margin: 0;
  font-size: 28px;
}

.split-content p {
  margin: 0;
}

.split-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.backdrop {
  position: absolute;
  inset: -10px;
  opacity: 0.12;
  z-index: 0;
}

.backdrop .media-frame {
  min-height: 100%;
}

.split > *:not(.backdrop) {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .media-frame {
  min-height: 180px;
}

.service-card .content {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
}

.price {
  font-weight: 600;
  color: #284a63;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.form-block {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-block label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d3c9bf;
  font-size: 15px;
  background-color: #fcfaf7;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row .field {
  flex: 1 1 220px;
}

.form-helper {
  font-size: 14px;
  color: #4b4b4b;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #284a63;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.sticky-cta button {
  background: none;
  border: none;
  color: inherit;
  font-size: 14px;
  cursor: pointer;
}

.site-footer {
  margin-top: 40px;
  background-color: #f1ece6;
  border-top: 1px solid #e2d8cf;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-note {
  color: #4a4a4a;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  padding: 16px;
  max-width: 320px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions button {
  border: 1px solid #284a63;
  background-color: #f7f4f0;
  color: #284a63;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.cookie-actions .accept {
  background-color: #284a63;
  color: #fff;
}

.notice {
  background-color: #fff3e8;
  border-left: 4px solid #c9683d;
  padding: 12px 16px;
  border-radius: 12px;
}

@media (max-width: 860px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
