* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #0f4c5c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background-color: #ffffff;
  border-bottom: 1px solid #e4e1dd;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: #6b6b6b;
  border: 1px solid #d9d4ce;
  padding: 4px 8px;
  border-radius: 12px;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 28px;
  padding: 48px 6% 60px;
  background-color: #fbfaf8;
}

.hero-copy,
.hero-visual {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.hero h1 {
  font-size: 42px;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid #0f4c5c;
  background-color: #0f4c5c;
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background-color: transparent;
  color: #0f4c5c;
}

.btn.ghost {
  border-color: transparent;
  background-color: #eae6e1;
  color: #3a3a3a;
}

.split-section {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 52px 6%;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.section-block {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.section-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background-color: #ffffff;
  border: 1px solid #e4e1dd;
  border-radius: 8px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background-color: #d7d1c7;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
}

.image-frame.small {
  min-height: 180px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-weight: 700;
  color: #0f4c5c;
}

.form-area {
  background-color: #ffffff;
  border: 1px solid #e4e1dd;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c9c3bc;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  font-weight: 600;
}

.testimonial {
  border-left: 4px solid #0f4c5c;
  padding-left: 16px;
  color: #3e3e3e;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #0f4c5c;
  color: #ffffff;
  padding: 14px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer {
  margin-top: auto;
  background-color: #f0ede9;
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #e4e1dd;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background-color: #ffffff;
  border: 1px solid #d9d4ce;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 36px 6%;
  background-color: #fbfaf8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background-color: #ffffff;
  border: 1px solid #e4e1dd;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal {
  background-color: #ffffff;
  border: 1px solid #e4e1dd;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
