:root {
  --primary: #0A7C5B;
  --secondary: #0B1F3B;
  --accent: #00C2FF;
  --background: #F6F8FB;
  --text: #1B1F24;
  --white: #ffffff;
  --muted: #5C6773;
  --border: #E0E6EE;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

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

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

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
}

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

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  font-weight: 600;
  color: var(--secondary);
}

nav a:hover {
  color: var(--primary);
}

.cta-btn {
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.cta-btn:hover {
  background: #075a42;
}

.menu-toggle {
  display: none;
}

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

.burger span {
  width: 26px;
  height: 3px;
  background: var(--secondary);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--secondary);
  color: var(--white);
  display: none;
  flex-direction: column;
  padding: 30px;
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.2rem;
  padding: 12px 0;
}

.close-menu {
  margin-left: auto;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle:checked ~ .mobile-nav {
  display: flex;
}

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

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

.hero h1 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 18px;
  color: var(--muted);
}

.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  margin-bottom: 16px;
}

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

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

.card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.highlight {
  background: var(--secondary);
  color: var(--white);
}

.highlight h2, .highlight h3, .highlight p {
  color: var(--white);
}

.list {
  list-style: none;
  margin-top: 12px;
}

.list li {
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.image-block {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

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

.faq-item {
  margin-bottom: 18px;
  padding: 18px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.form {
  display: grid;
  gap: 16px;
}

input, textarea, select {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

footer {
  background: var(--secondary);
  color: var(--white);
  padding: 40px 0 20px;
}

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

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

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 8px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
  padding-top: 16px;
  font-size: 0.9rem;
}

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

.cookie-banner.active {
  display: block;
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  width: fit-content;
}

@media (max-width: 900px) {
  nav ul {
    display: none;
  }

  .burger {
    display: flex;
  }

  .cta-btn {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .header-inner {
    padding: 10px 0;
  }
}