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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #e0f7fa, #f1f8e9);
  color: #1b4332;
  line-height: 1.6;
}

a {
  color: #1d3557;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: linear-gradient(135deg, #1b4332, #2b9348);
  color: #fff;
  padding: 1.2rem 1.6rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

nav a {
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  font-size: 0.9rem;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #f1faee;
}

main {
  max-width: 1200px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-illustration {
  text-align: center;
}

.hero-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 1.6rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.hero-text h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #1b4332;
  margin-bottom: 0.75rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 1.4rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

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

.card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.4rem;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.section {
  margin-bottom: 2.8rem;
}

.section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.section h3 {
  font-size: 1.15rem;
  margin: 0.75rem 0 0.4rem;
}

.section p {
  margin-bottom: 0.5rem;
}

ul,
ol {
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
}

figure {
  margin: 1.5rem 0;
  text-align: center;
}

figure img {
  max-width: 100%;
  height: auto;
  border-radius: 1.4rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

figure figcaption {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  color: #476268;
}

form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 0.5rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid #cbd5e1;
  font: inherit;
  background: #fff;
}

button {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2b9348, #55a630);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  opacity: 0.96;
}

footer {
  background: #1b4332;
  color: #d8f3dc;
  padding: 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-inner a {
  color: #b7e4c7;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  header {
    padding: 1rem;
  }
  nav ul {
    justify-content: flex-end;
  }
  main {
    margin-top: 1.4rem;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(27, 67, 50, 0.97);
  color: #f1faee;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #b7e4c7;
  text-decoration: underline;
}

.cookie-banner button {
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #2b9348, #55a630);
  color: #fff;
  white-space: nowrap;
}

.cookie-banner button:hover {
  opacity: 0.96;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    align-items: flex-start;
  }
}
