:root {
  --primary: #0B2D39;
  --secondary: #2EC4B6;
  --accent: #FFB703;
  --bg: #F7F7F2;
  --text: #111827;
  --muted: #94A3B8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
}

.nav-toggle {
  display: none;
}

.burger {
  display: none;
  cursor: pointer;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid var(--muted);
  border-radius: 6px;
  color: var(--primary);
}

.mobile-menu {
  display: none;
}

.hero {
  padding: 80px 0 50px;
  background: var(--white);
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero h1 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: var(--text);
}

.btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 16px;
}

.section {
  padding: 70px 0;
}

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

.section h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 18px;
}

.section h3 {
  color: var(--primary);
  margin-top: 0;
}

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

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.card p {
  color: var(--text);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

.image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

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

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

.contact-form {
  background: var(--white);
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  margin-bottom: 14px;
  font-family: inherit;
}

.contact-form button {
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  background: var(--primary);
  color: var(--white);
  padding: 50px 0 30px;
}

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

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

.footer-links a {
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 14px;
  color: #e5e7eb;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  padding: 18px;
  border-radius: 10px;
  display: none;
  z-index: 200;
}

.cookie-banner button {
  background: var(--accent);
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.page-title {
  padding: 60px 0 20px;
  background: var(--white);
}

.page-title h1 {
  color: var(--primary);
  font-size: 36px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
  }
  .nav-toggle:checked ~ .mobile-menu {
    display: block;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    padding: 30px;
    z-index: 150;
  }
  .mobile-menu .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
  }
  .mobile-menu nav a {
    display: block;
    margin: 18px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 30px;
  }
  .section h2 {
    font-size: 26px;
  }
}