* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1b1f23;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #0a4a3c;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.top-bar {
  background: #0b2d28;
  color: #ffffff;
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ad-label {
  background: #f5d06f;
  color: #3b2a06;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.nav {
  padding: 18px 0;
  background: #ffffff;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 4px;
  background: #f0f2f4;
}

.nav-links a:hover,
.nav-links a:focus {
  background: #e1e5ea;
}

.hero {
  padding: 64px 0 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-image {
  background-color: #c7d5d2;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 360px;
}

.image-frame {
  background-color: #c7d5d2;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #0b2d28;
  color: #ffffff;
}

.section.bg-one {
  background-color: #1e3a34;
  background-image: linear-gradient(
      rgba(17, 20, 20, 0.75),
      rgba(17, 20, 20, 0.75)
    ),
    url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.dark a {
  color: #f5d06f;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: #3f4a4c;
}

.section.dark .lead {
  color: #dde4e2;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #0a4a3c;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #0a4a3c;
  color: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: #0e5b4a;
  transform: translateY(-2px);
}

.btn.secondary {
  background: #f5d06f;
  color: #3b2a06;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #f1c247;
}

.pill {
  display: inline-block;
  background: #eaf0ef;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c9d1d3;
  font-family: inherit;
  margin-bottom: 14px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #4f5b5f;
}

.section.dark .disclaimer {
  color: #d1d8d6;
}

.footer {
  background: #111414;
  color: #e4e9ea;
  padding: 36px 0;
  margin-top: auto;
}

.footer a {
  color: #f5d06f;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta a {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1b1f23;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  z-index: 30;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  background: #fdf5e6;
  border-left: 4px solid #f5d06f;
  padding: 12px 16px;
  border-radius: 8px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-like span {
  display: block;
  background: #f0f2f4;
  padding: 10px 12px;
  border-radius: 8px;
}

.references a {
  display: inline-block;
  margin-right: 8px;
}

@media (max-width: 820px) {
  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
  }
}
