* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1b4f72;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

header {
  padding: 24px 0 16px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b5b5b;
  padding: 4px 10px;
  border: 1px solid #d4cfc9;
  border-radius: 999px;
  background: #fff6ec;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  min-height: 260px;
  background: #e6e0d9;
  border-radius: 18px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 48px 0;
}

.section.soft {
  background: #ffffff;
}

.section.tint {
  background: #efe8de;
}

.section.dark {
  background: #1b1f2a;
  color: #f5f5f5;
}

.section.dark a {
  color: #d8f0ff;
}

.bg-speed {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2f35;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f2a2a;
}

.overlay {
  background: rgba(21, 26, 32, 0.65);
  padding: 56px 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2ddd6;
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background: #e1dcd6;
  min-height: 160px;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1b4f72;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1b4f72;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background: #163a53;
}

.btn.secondary {
  background: #f1c27d;
  color: #1b1f2a;
}

.btn.secondary:hover {
  background: #e0b36b;
}

.note {
  font-size: 0.95rem;
  color: #4a4a4a;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.form-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e2ddd6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bf;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.inline-testimonial {
  padding: 14px 18px;
  border-left: 4px solid #1b4f72;
  background: #f7f4f1;
  margin: 18px 0;
}

.footer {
  margin-top: auto;
  padding: 32px 0 64px;
  background: #f1ede7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0;
}

.disclaimer {
  font-size: 0.85rem;
  color: #4f4f4f;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid #dcd6cf;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1b1f2a;
  color: #ffffff;
  padding: 16px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .btn {
  padding: 10px 16px;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.callout {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e2ddd6;
}

.simple-hero {
  padding: 48px 0;
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  background: #e5e0d8;
}
