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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  color: #333;
  background-color: #fafaf8;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 1.5rem 0;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  color: #6B8E23;
  border-bottom: 3px solid #8FBC8F;
  padding-bottom: 0.8rem;
}

h3 {
  font-size: 1.5rem;
  color: #6B8E23;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.2rem;
  color: #333;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

a {
  color: #6B8E23;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8FBC8F;
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 95%;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #6B8E23;
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #8FBC8F;
}

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

nav a {
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

main {
  margin-top: 90px;
  padding: 0;
}

section {
  padding: 5rem 2rem;
  background-color: #fafaf8;
}

section:nth-child(even) {
  background-color: #fff;
}

section:nth-child(1n) {
  max-width: 95%;
  margin: 0 auto;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-hero {
  text-align: center;
  padding: 6rem 2rem;
}

.hero-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
}

.section-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-two-col-reverse {
  grid-template-columns: 1fr 1fr;
}

.section-two-col-reverse div:first-child {
  order: 2;
}

.section-two-col-reverse div:last-child {
  order: 1;
}

.section-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.section-img:hover {
  transform: scale(1.02);
}

.content-block {
  padding: 1rem 0;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

ul li, ol li {
  margin-bottom: 0.8rem;
  color: #333;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-left: 4px solid #6B8E23;
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.card h3 {
  color: #6B8E23;
  margin-top: 0;
  font-size: 1.3rem;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.card-benefits {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.card-benefits li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #555;
}

.card-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8FBC8F;
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #6B8E23 0%, #8FBC8F 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
  font-family: 'Segoe UI', sans-serif;
}

.btn:hover {
  box-shadow: 0 2px 6px rgba(107, 142, 35, 0.2);
  transform: translateY(1px);
}

.disclaimer {
  background-color: #f0f8f0;
  border-left: 4px solid #A52A2A;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #333;
}

.disclaimer h4 {
  color: #A52A2A;
  margin-top: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6B8E23;
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

footer {
  background-color: #2a2a2a;
  color: #f0f0f0;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-section h4 {
  color: #8FBC8F;
  margin-bottom: 1rem;
  font-size: 1rem;
  margin-top: 0;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
}

.footer-section a {
  color: #FFD700;
  text-decoration: none;
}

.footer-section a:hover {
  color: #8FBC8F;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  font-size: 0.85rem;
  color: #999;
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2a2a2a;
  color: #f0f0f0;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  border-top: 3px solid #6B8E23;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: #FFD700;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-banner button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.cookie-banner .btn-accept {
  background-color: #8FBC8F;
  color: #fff;
}

.cookie-banner .btn-accept:hover {
  background-color: #6B8E23;
}

.cookie-banner .btn-decline {
  background-color: transparent;
  color: #f0f0f0;
  border: 1px solid #f0f0f0;
}

.cookie-banner .btn-decline:hover {
  background-color: #444;
  border-color: #FFD700;
  color: #FFD700;
}

.thank-you-container {
  max-width: 600px;
  margin: 4rem auto;
  text-align: center;
  padding: 3rem;
  background-color: #f0f8f0;
  border-radius: 8px;
  border-left: 4px solid #6B8E23;
}

.thank-you-container h2 {
  border: none;
  color: #6B8E23;
  margin-bottom: 1.5rem;
}

.thank-you-container p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.thank-you-container a {
  display: inline-block;
}

.educational-notice {
  background-color: #f9f3e6;
  border-left: 4px solid #FFD700;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #333;
  text-align: center;
  font-weight: 500;
}

.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: #6B8E23;
}

.timeline {
  position: relative;
  padding: 2rem 0;
  margin: 2rem 0;
}

.timeline-item {
  padding: 1.5rem;
  margin-bottom: 2rem;
  background-color: #f9f9f9;
  border-left: 3px solid #8FBC8F;
  border-radius: 4px;
}

.timeline-item h4 {
  color: #6B8E23;
  margin-top: 0;
}

@media (max-width: 768px) {
  header {
    padding: 0.8rem 0;
  }

  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }

  main {
    margin-top: 150px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .section-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-two-col-reverse div:first-child {
    order: 1;
  }

  .section-two-col-reverse div:last-child {
    order: 2;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner button {
    width: 100%;
  }

  .hero-img {
    max-width: 100%;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  p {
    text-align: left;
  }

  .thank-you-container {
    margin: 2rem 1rem;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  section {
    padding: 2rem 1rem;
  }

  nav ul {
    gap: 0;
  }

  nav a {
    padding: 0.3rem 0.5rem;
    font-size: 0.85rem;
  }

  .cookie-banner-text {
    font-size: 0.85rem;
  }

  .footer-section p {
    font-size: 0.8rem;
  }
}
