* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f5f2;
  --text: #1b1f22;
  --muted: #5b646b;
  --accent: #2f5b7a;
  --accent-2: #8a5a3c;
  --line: #d6d2cc;
  --card: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  display: flex;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  width: 100%;
}

.sidebar {
  width: 280px;
  padding: 28px 24px;
  background: #efece6;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff8f1;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 12px var(--shadow);
}

.nav a:focus,
.nav a:hover {
  outline: none;
  transform: translateY(-1px);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.content {
  flex: 1;
  padding: 40px 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px var(--shadow);
}

.hero-text {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-media {
  flex: 1;
  min-height: 320px;
  background-color: #dbe5ec;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split-block {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split-block.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  flex: 1;
  min-height: 260px;
  background: #e9e5df;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px var(--shadow);
}

.text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px var(--shadow);
}

.card-image {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: #e1e7ec;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.timeline-step {
  display: flex;
  gap: 16px;
}

.timeline-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pricing-panel {
  background: #fff3e9;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 12px;
}

.pricing-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.form-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.field {
  flex: 1;
  min-width: 220px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  width: 100%;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f3ee;
  padding: 12px;
  border-radius: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  align-self: flex-end;
  background: #1f3a4d;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px var(--shadow);
  max-width: 340px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

@media (max-width: 980px) {
  body {
    flex-direction: column;
  }

  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 32px 20px 80px;
  }

  .hero,
  .split-block {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    align-self: flex-start;
  }
}
