:root {
  --emerald: #0B8457;
  --navy: #0A1F44;
  --white: #FFFFFF;
  --light: #F3F5F7;
  --amber: #FFB020;
  --text: #1F2A37;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

a {
  color: var(--emerald);
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.light {
  background: var(--light);
}

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

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

.cards .card {
  background: var(--white);
  border: 1px solid #E0E4E8;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.cards .card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.trust-badges {
  list-style: none;
  margin: 20px 0;
  display: grid;
  gap: 8px;
}

.keywords {
  font-size: 0.95rem;
  color: #4B5563;
}

.bullets {
  list-style: disc;
  margin-left: 18px;
  display: grid;
  gap: 8px;
}

.accordion details {
  background: var(--white);
  border: 1px solid #E0E4E8;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}

.btn {
  background: var(--emerald);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn.outline {
  background: transparent;
  border: 2px solid var(--emerald);
  color: var(--emerald);
}

.btn.small {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 12px;
  background: var(--white);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #E0E4E8;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  font-size: 1rem;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #E0E4E8;
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo-img {
  width: 50px;
  height: auto;
}

.footer-logo {
  width: 100px;
}

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

.site-nav a {
  color: var(--navy);
  font-weight: 600;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-label span {
  width: 26px;
  height: 3px;
  background: var(--navy);
}

.nav-close {
  display: none;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 50px 0 20px;
}

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

.site-footer a {
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #D1D5DB;
}

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

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

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.image-row {
  margin-top: 20px;
}

.desktop-only {
  display: block;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .nav-toggle-label {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.2s ease;
  }

  .site-nav ul li a {
    color: var(--white);
    font-size: 1.2rem;
  }

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

  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--white);
    display: block;
    cursor: pointer;
  }

  .desktop-only {
    display: none;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero h1 {
    font-size: 2rem;
  }
}