* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #14213d;
  background: #f8f7f4;
  line-height: 1.6;
}
[hidden] {
    display: none !important;
}
img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #14213d;
  color: #ffffff;
  display: inline-flex;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e3dc;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1d3557;
}

.menu-toggle {
  background: none;
  border: 1px solid #1d3557;
  color: #1d3557;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e5e3dc;
  padding: 0.75rem;
  border-radius: 0.75rem;
  position: absolute;
  right: 5%;
  top: 4.5rem;
  width: 220px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.site-nav a:hover,
.site-nav a:focus {
  background: #f1f3f5;
}

.hero {
  padding: 3rem 0 2.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: #1d3557;
  color: #ffffff;
  padding: 1.75rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  background: #f4a261;
  color: #1d3557;
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #1d3557;
  color: #1d3557;
}

.btn-link {
  background: none;
  color: #1d3557;
  padding: 0.3rem 0.4rem;
  border-radius: 0.4rem;
}

section {
  padding: 2.5rem 0;
}

.section-alt {
  background: #ffffff;
}

.section-highlight {
  background: #ffe8d6;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e5e3dc;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-icon {
  width: 48px;
  height: 48px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 0.9rem;
  border: 1px solid #e5e3dc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.4rem;
}

.testimonial {
  border-left: 4px solid #1d3557;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial span {
  font-weight: 600;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  background: #ffffff;
  border: 1px solid #e5e3dc;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e3dc;
  border-radius: 0.9rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1d3557;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  background: #1d3557;
  color: #ffffff;
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer small {
  color: #d9e2f2;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.service-table th,
.service-table td {
  border: 1px solid #e5e3dc;
  padding: 0.85rem;
  text-align: left;
}

.service-table th {
  background: #f1f3f5;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e3dc;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: #ffffff;
  border: 1px solid #e5e3dc;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 33, 61, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.cookie-modal__content {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e3dc;
}

.cookie-toggle button {
  border-radius: 999px;
  border: 1px solid #1d3557;
  background: none;
  padding: 0.35rem 0.9rem;
  font-weight: 600;
  color: #1d3557;
}

.cookie-toggle button[aria-pressed="true"] {
  background: #1d3557;
  color: #ffffff;
}

.modal-close {
  align-self: flex-end;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 720px) {
  .site-nav {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    flex-direction: row;
    border: none;
    padding: 0;
    width: auto;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 220px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 280px;
  }
}
