:root {
  --navy: #0B1320;
  --teal: #00C2B3;
  --sand: #F4EFEA;
  --charcoal: #1F2937;
  --coral: #FF5A5F;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
}

.burger {
  display: none;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.cta-button {
  background: var(--teal);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
}

.small-hero {
  padding: 56px 0;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 16px;
}

.section {
  padding: 64px 0;
}

.section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--navy);
}

.section h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.section.sand {
  background: var(--sand);
}

.section.navy {
  background: var(--navy);
  color: var(--white);
}

.section.navy h2,
.section.navy h3 {
  color: var(--white);
}

.grid {
  display: grid;
  gap: 28px;
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.service-cards article {
  background: var(--white);
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.image-wrap {
  border-radius: 12px;
  overflow: hidden;
}

.primary-button, .secondary-button {
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.primary-button {
  background: var(--teal);
  color: var(--navy);
}

.secondary-button {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.process-list {
  list-style: disc;
  padding-left: 20px;
}

.faq-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-family: inherit;
}

.contact-details p {
  margin-bottom: 8px;
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 12px;
}

.footer-menus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer-menus ul {
  list-style: none;
  padding: 0;
}

.footer-menus a {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid #3a4a5e;
  padding-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 16px 0;
  display: none;
  z-index: 100;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

@media (max-width: 900px) {
  .two-col, .three-col, .footer-top, .footer-menus, .faq-grid {
    grid-template-columns: 1fr;
  }
  .site-nav ul {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--navy);
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: none;
    gap: 24px;
  }

  .site-nav ul {
    align-items: center;
  }

  .site-nav .close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
  }

  .nav-toggle:checked + .burger + .site-nav {
    transform: translateX(0);
  }

  .cta-button {
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0;
  }
  .section {
    padding: 48px 0;
  }
}