:root {
  --natural-green: #E8F5E9;
  --forest-emerald: #0A3D2E;
  --earth-terracotta: #A0522D;
  --peak-mist: #B2D8D8;
  --white: #FFFFFF;
  --dark-gray: #2C2C2C;
}

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

html, body {
  font-family: 'Poppins', 'Nunito', sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  scroll-behavior: smooth;
}

body {
  line-height: 1.82;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: var(--forest-emerald);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--forest-emerald);
}

h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

a {
  color: var(--forest-emerald);
  text-decoration: none;
  transition: all 0.4s ease;
}

a:hover {
  color: var(--earth-terracotta);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--white) 0%, var(--natural-green) 100%);
  padding: 1rem 6vw;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(10, 61, 46, 0.08);
}

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1640px;
  margin: 0 auto;
}

header .logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--forest-emerald);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

header .logo img {
  height: 40px;
  width: 40px;
}

header .nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

header .nav-links a {
  color: var(--forest-emerald);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.4s ease;
}

header .nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-emerald), var(--peak-mist));
}

header .nav-links a:hover {
  color: var(--earth-terracotta);
}

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

.section {
  padding: 80px 6vw;
  max-width: 1640px;
  margin: 0 auto;
}

.section-full {
  width: 100%;
  padding: 0;
}

.section-content {
  max-width: 1640px;
  margin: 0 auto;
  display: grid;
  gap: 60px;
}

.hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, var(--natural-green) 0%, var(--peak-mist) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  animation: parallax 8s ease infinite;
}

@keyframes parallax {
  0%, 100% { transform: translateY(-15px); }
  50% { transform: translateY(15px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  text-shadow: 2px 2px 10px rgba(10, 61, 46, 0.3);
  margin-bottom: 1rem;
}

.hero p {
  color: var(--white);
  font-size: 1.3rem;
  text-shadow: 1px 1px 5px rgba(10, 61, 46, 0.2);
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-2col.reverse {
  direction: rtl;
}

.grid-2col.reverse > * {
  direction: ltr;
}

.grid-2col-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(10, 61, 46, 0.15);
}

.grid-2col-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.grid-2col:hover .grid-2col-image img {
  transform: scale(1.03);
}

.grid-2col-content h2 {
  margin-bottom: 1.5rem;
}

.grid-2col-content p {
  margin-bottom: 1.2rem;
  color: var(--dark-gray);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 3rem;
}

.card {
  background: var(--natural-green);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(10, 61, 46, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(10, 61, 46, 0.15);
  background: linear-gradient(135deg, var(--natural-green), var(--peak-mist));
}

.card h4 {
  color: var(--forest-emerald);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--peak-mist);
  border-radius: 8px;
  overflow: hidden;
}

table th {
  background: linear-gradient(135deg, var(--forest-emerald), var(--peak-mist));
  color: var(--white);
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--natural-green);
}

table tr:hover {
  background: var(--natural-green);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--forest-emerald), var(--peak-mist));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(10, 61, 46, 0.3);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 61, 46, 0.4);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(10, 61, 46, 0);
  }
}

.btn-secondary {
  background: linear-gradient(135deg, var(--earth-terracotta), #8B6F47);
  color: var(--white);
}

footer {
  background: linear-gradient(135deg, var(--forest-emerald), #092C1F);
  color: var(--white);
  padding: 3rem 6vw;
  margin-top: 5rem;
}

footer .footer-content {
  max-width: 1640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

footer h4 {
  color: var(--natural-green);
  margin-bottom: 1rem;
}

footer a {
  color: var(--peak-mist);
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
}

footer a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

footer p {
  color: var(--peak-mist);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-divider {
  border-top: 1px solid rgba(232, 245, 233, 0.2);
  margin: 2rem 0;
  padding-top: 2rem;
}

.footer-bottom {
  text-align: center;
  color: var(--peak-mist);
  font-size: 0.9rem;
  border-top: 1px solid rgba(232, 245, 233, 0.2);
  padding-top: 2rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: var(--peak-mist);
}

form {
  background: var(--natural-green);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 4px 20px rgba(10, 61, 46, 0.1);
}

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

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--forest-emerald);
}

form input[type="email"],
form input[type="text"],
form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--peak-mist);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.4s ease;
}

form input[type="email"]:focus,
form input[type="text"]:focus,
form textarea:focus {
  outline: none;
  border-color: var(--forest-emerald);
  box-shadow: 0 0 0 3px rgba(10, 61, 46, 0.1);
  background: var(--white);
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

.disclaimer {
  background: var(--peak-mist);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--forest-emerald);
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.faq-item {
  background: var(--natural-green);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--earth-terracotta);
  cursor: pointer;
  transition: all 0.4s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(10, 61, 46, 0.1);
  transform: translateX(10px);
}

.faq-question {
  font-weight: 600;
  color: var(--forest-emerald);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.4s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--forest-emerald), #092C1F);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(10, 61, 46, 0.2);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-text p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.cookie-buttons button,
.cookie-buttons a {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-accept {
  background: var(--earth-terracotta);
  color: var(--white);
}

.cookie-accept:hover {
  background: #8B4513;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.cookie-learn {
  background: transparent;
  color: var(--peak-mist);
  border: 1px solid var(--peak-mist);
  text-decoration: underline;
}

.cookie-learn:hover {
  color: var(--white);
  border-color: var(--white);
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-container h1 {
  margin-bottom: 1.5rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.center-text {
  text-align: center;
  margin: 3rem 0;
}

.center-text h2 {
  margin-bottom: 1.5rem;
}

.center-text p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--forest-emerald);
}

.policy-content ul {
  margin: 1rem 0 1rem 2rem;
  list-style: disc;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.overlay-text {
  position: relative;
  overflow: hidden;
}

.overlay-text-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 61, 46, 0.8));
  padding: 3rem 2rem 2rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.grid-2col:hover .overlay-text-content {
  opacity: 1;
}

.educational-notice {
  background: linear-gradient(135deg, var(--natural-green), var(--peak-mist));
  border: 2px solid var(--forest-emerald);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.educational-notice h3 {
  color: var(--forest-emerald);
  margin-bottom: 1rem;
  font-style: normal;
}

.educational-notice p {
  color: var(--dark-gray);
  font-weight: 500;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  header .nav-links {
    display: none;
  }

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

  .hero {
    height: 400px;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 4vw;
  }

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

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

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button,
  .cookie-buttons a {
    width: 100%;
  }
}
