* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f4f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 240px;
  background: #181818;
  color: #f7f3ee;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  color: #f7f3ee;
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

.sidebar .cta-link {
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid #f7f3ee;
  text-align: center;
  border-radius: 999px;
  font-size: 14px;
}

.main {
  flex: 1;
  padding: 32px 28px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.section-dark {
  background: #1f1f1f;
  color: #f7f3ee;
}

.section-highlight {
  background: linear-gradient(120deg, #fce6f3, #f9f2e9);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-weight: 600;
}

.section-dark .pill {
  background: rgba(255, 255, 255, 0.15);
}

.hero {
  background: url("pattern.svg") right top / cover no-repeat;
}

.hero h1 {
  font-size: 34px;
  margin: 0;
  line-height: 1.2;
}

.hero p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #f7f3ee;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-light {
  background: #f7f3ee;
  color: #1f1f1f;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f1f1f;
  color: #1f1f1f;
}

.btn:focus {
  outline: 2px solid #ad2a5f;
  outline-offset: 2px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #f8f6f3;
}

.card img {
  width: 100%;
  border-radius: 14px;
}

.tag-line {
  font-size: 14px;
  opacity: 0.75;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #ad2a5f;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #f0e6e0;
}

.inline-link {
  color: #ad2a5f;
  font-weight: 600;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
}

.form-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d3cc;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  background: #ad2a5f;
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta button {
  background: transparent;
  color: #fff1f4;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  opacity: 0.7;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }

  .card-list {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (max-width: 720px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .sidebar .cta-link {
    width: 100%;
  }
}
