* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c2430;
  --muted: #4d5b6b;
  --accent: #0f6b5b;
  --accent-2: #1e3a8a;
  --bg: #f6f4f0;
  --card: #ffffff;
  --line: #dde3ea;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 10px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  padding: 4px 10px;
  border: 1px dashed var(--accent);
  color: var(--accent);
}

.hero {
  padding: 40px 0 70px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1;
  min-width: 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn.light {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
}

.image-frame {
  background-color: #e4e9ef;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.muted {
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
  white-space: nowrap;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.bg-slate {
  background: #eef2f7;
}

.bg-image-one {
  background-color: #dbe5ef;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-two {
  background-color: #e6ecf2;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  background: rgba(255, 255, 255, 0.92);
  padding: 28px;
  border-radius: 12px;
}

.form-card {
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent-2);
  font-weight: 600;
}

.testimonial {
  background: var(--card);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 10px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.info-card .card-body {
  padding: 14px 16px;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.footer {
  padding: 40px 0 60px;
  background: #111827;
  color: #f8fafc;
}

.footer a {
  color: #cbd5f5;
}

.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer .col {
  flex: 1;
  min-width: 180px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #1f2937;
  color: #f8fafc;
  padding: 16px;
  border-radius: 12px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  background: #f8fafc;
  color: #1f2937;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 90px;
  background: var(--accent-2);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.page-hero {
  padding: 50px 0 30px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.contact-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

.image-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-row .image-frame {
  flex: 1;
  min-width: 240px;
  min-height: 200px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 80px;
  }
}
