body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #1c2230;
  background: #f6f7fb;
  padding-bottom: 72px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible {
  outline: 2px solid #0b3a82;
  outline-offset: 2px;
}

img {
  width: 100%;
  display: block;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d47a1;
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e6f0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-brand {
  font-weight: 700;
  font-size: 18px;
  color: #0d47a1;
}

.navbar {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  color: #1c2230;
}

.nav-links a:hover {
  color: #0d47a1;
}

.nav-links .active {
  color: #0d47a1;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #d5dae4;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 16px;
}

.hero {
  position: relative;
  background: image-set(
    url("hero.webp") type("image/webp"),
    url("hero.png") type("image/png")
  ) center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 80px 16px;
}

.hero-overlay h1 {
  margin: 0 0 12px;
  font-size: 34px;
}

.hero-subtitle {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  opacity: 0.95;
}

.hero-overlay p {
  margin: 0 0 24px;
  font-size: 18px;
  max-width: 640px;
}

.sub-hero {
  min-height: 38vh;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: #0b3a82;
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 58, 130, 0.28);
}

.button.ghost {
  border: 1px solid #0b3a82;
  color: #0b3a82;
  background: #eef3ff;
}

.button:hover {
  transform: translateY(-1px);
}

.button.ghost:hover {
  background: #d9e6ff;
  box-shadow: 0 4px 10px rgba(11, 58, 130, 0.14);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #0d47a1;
}

.section-lead {
  max-width: 860px;
  margin: -10px auto 26px;
  text-align: center;
  line-height: 1.6;
  color: #2b344a;
}

.service-links {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(11, 28, 61, 0.98);
  color: #e9edf6;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.sticky-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta-text {
  font-weight: 700;
  font-size: 14px;
}

.sticky-cta-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sticky-cta-button {
  padding: 10px 14px;
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 72px;
  z-index: 1001;
  background: #ffffff;
  border-top: 1px solid #dfe4f0;
  box-shadow: 0 -10px 24px rgba(18, 38, 63, 0.12);
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-text {
  font-size: 14px;
  color: #1c2230;
}

.cookie-banner-text a {
  color: #0b3a82;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner-actions .button {
  border: none;
  cursor: pointer;
}

.footer-links {
  text-align: center;
  font-size: 13px;
}

.footer-links a {
  color: #0b3a82;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 8px 0 6px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef3ff;
  color: #0b3a82;
  border: 1px solid #d5dae4;
}

.social-link:hover {
  background: #d9e6ff;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(18, 38, 63, 0.08);
}

.card h3 {
  margin-top: 0;
  color: #1c2230;
}

.storage {
  background: #fff;
}

.storage-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
  align-items: start;
}

.storage-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.storage-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e2e6f0;
}

.storage-note {
  background: #0d47a1;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.2);
}

.storage-photo {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
}

.areas {
  background: #e8effd;
  border-top: 1px solid #d7e2f7;
  border-bottom: 1px solid #d7e2f7;
}

.areas-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 26px;
  align-items: center;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.area-list li {
  padding: 8px 0;
  border-bottom: 1px solid #d7e2f7;
}

.areas-highlight {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.tag {
  display: inline-block;
  background: #0d47a1;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.2);
}

.cta-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(18, 38, 63, 0.08);
}

.cta-section.section {
  padding: 50px 20px;
}

.area-paragraphs p {
  margin: 10px 0;
  line-height: 1.6;
}

.testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.testimonial {
  background: #f4f6fb;
  padding: 20px;
  border-left: 5px solid #0d47a1;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(18, 38, 63, 0.06);
}

.testimonial p {
  margin: 0 0 10px;
  line-height: 1.5;
}

.testimonial span {
  font-size: 13px;
  color: #526081;
}

.faq {
  background: #f6f7fb;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq details {
  background: #fff;
  border: 1px solid #e2e6f0;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 8px 18px rgba(18, 38, 63, 0.05);
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  color: #0d47a1;
}

.faq p {
  margin: 10px 0 0;
  color: #1c2230;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.gallery img {
  border-radius: 10px;
  height: 20vh;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(18, 38, 63, 0.06);
}

.footer {
  background: #0b1c3d;
  color: #e9edf6;
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.footer a {
  color: #e9edf6;
}

.footer-meta {
  text-align: center;
  margin: 0;
  font-size: 14px;
  color: #cdd5e5;
}

.contact-section {
  max-width: 820px;
}

.map-embed {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 38, 63, 0.08);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d7e2f7;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #0d47a1;
  outline-offset: 1px;
}

.form-note {
  font-size: 13px;
  color: #526081;
  margin: 0;
}

.outbuildings {
  border: 1px solid #d7e2f7;
  border-radius: 8px;
  padding: 10px 12px 8px;
}

.outbuildings legend {
  font-weight: 700;
  color: #0d47a1;
  padding: 0 4px;
}

.outbuildings .inline {
  display: block;
  font-weight: 500;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 0;
    top: 46px;
    background: #fff;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e2e6f0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(18, 38, 63, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .areas-inner {
    grid-template-columns: 1fr;
  }

  .hero-overlay h1 {
    font-size: 28px;
  }

  .sticky-cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .sticky-cta-actions {
    justify-content: center;
  }

  .storage-content {
    grid-template-columns: 1fr;
  }
}
