*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --ink: #1e1f24;
  --muted: #5c636f;
  --accent: #2f5f9a;
  --accent-dark: #234771;
  --soft: #ebe6de;
  --panel: #ffffff;
  --highlight: #f2efe9;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

header {
  padding: 24px 6vw;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 20px 6vw 40px;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-media {
  flex: 1 1 320px;
  min-width: 280px;
  background: #d9d9d9;
  padding: 12px;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  max-height: 420px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 48px 6vw;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(23, 28, 40, 0.08);
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(23, 28, 40, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-media {
  background: #d9d9d9;
}

.card-media img {
  width: 100%;
  height: 200px;
}

.highlight {
  background: var(--highlight);
}

.banner-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.banner-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 31, 36, 0.68);
}

.banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section {
  background: var(--panel);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(23, 28, 40, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd2da;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(23, 28, 40, 0.18);
  z-index: 50;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  transform: translateY(-1px);
}

footer {
  padding: 36px 6vw 70px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(23, 28, 40, 0.2);
  z-index: 60;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--panel);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(23, 28, 40, 0.08);
}

.page-hero {
  padding: 32px 6vw 12px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.3rem;
}

.image-box {
  background: #d9d9d9;
  border-radius: 18px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: var(--panel);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  box-shadow: 0 12px 22px rgba(23, 28, 40, 0.08);
}

.service-details {
  flex: 1 1 280px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

@media (max-width: 800px) {
  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
