* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background: #f6f7f9;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1b5e5a;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e5e9;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.8rem;
  color: #5a636f;
  border: 1px solid #d5dbe2;
  padding: 6px 10px;
  border-radius: 999px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 55%;
}

.split .media {
  flex: 1 1 45%;
  display: flex;
}

.image-frame {
  background-color: #cfd8dc;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.hero {
  background: #ffffff;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-top: 0;
}

.lead {
  font-size: 1.1rem;
  color: #4b535e;
}

.section-alt {
  background: #edf2f4;
}

.section-contrast {
  background: #1c3b3a;
  color: #f8fafc;
}

.section-contrast a {
  color: #c6ffec;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 260px;
  box-shadow: 0 18px 30px rgba(26, 31, 36, 0.08);
}

.service-card h3 {
  margin-top: 12px;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: #1b5e5a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1b5e5a;
  color: #ffffff;
  border: 1px solid #1b5e5a;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: #1b5e5a;
}

.button:hover,
.button:focus {
  opacity: 0.9;
  text-decoration: none;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #dde3e8;
  padding: 12px 0;
  z-index: 2;
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.split-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(21, 27, 34, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6dd;
  font-size: 1rem;
}

.quote {
  font-style: italic;
  border-left: 3px solid #1b5e5a;
  padding-left: 16px;
}

.footer {
  background: #11181f;
  color: #e0e6ec;
  padding: 40px 0 60px;
}

.footer a {
  color: #c5ffef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(19, 26, 33, 0.2);
  padding: 18px;
  width: min(360px, 90%);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  flex: 1;
}

.bg-storage {
  background-image: url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  background: rgba(12, 22, 24, 0.68);
  color: #f5f7f9;
}

.bg-overlay .container {
  padding: 60px 0;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .sticky-cta .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
