* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background-color: #f7f7f4;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: #1f2933;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e6ea;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #4a5560;
  max-width: 320px;
}

.hero,
.split-section {
  display: flex;
  gap: 40px;
  padding: 60px 6%;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.hero {
  padding-top: 40px;
}

.content-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-block {
  flex: 1;
  background-color: #d9dee2;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #6b7280;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #1f2933;
  color: #ffffff;
  font-weight: 600;
}

.btn.alt {
  background-color: #d97706;
}

.btn:hover,
.nav-links a:hover,
.inline-link:hover {
  opacity: 0.8;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.full-width {
  padding: 60px 6%;
  background-color: #ffffff;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background-color: #f5f5f2;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  height: 160px;
  background-color: #cdd4da;
  border-radius: 12px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.background-split {
  background-image: url("https://images.unsplash.com/photo-1551522435-b2347f669045?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.background-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
}

.background-split .content-block {
  position: relative;
  z-index: 2;
}

.form-wrapper {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0d7de;
  font-size: 1rem;
  font-family: inherit;
}

.note {
  font-size: 0.9rem;
  color: #5b6470;
}

.footer {
  padding: 40px 6%;
  background-color: #111827;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #e5e7eb;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #fef3c7;
  padding: 12px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.simple-page {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  max-width: 520px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .sticky-cta {
    position: static;
  }
}
