@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700;800&display=swap');

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

:root {
  --fresh-green: #66BB6A;
  --crisp-red: #EF5350;
  --warm-toast: #D7CCC8;
  --deep-graphite: #424242;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #EEEEEE;
  --dark-text: #212121;
}

html, body {
  font-family: 'Quicksand', sans-serif;
  background-color: var(--white);
  color: var(--dark-text);
  line-height: 1.85;
  font-weight: 400;
  font-size: 16px;
}

body {
  padding-top: 80px;
}

h1 {
  font-weight: 800;
  font-size: 5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

p {
  margin-bottom: 1rem;
  line-height: 1.85;
}

.highlight-green {
  color: var(--fresh-green);
  font-weight: 700;
}

.highlight-red {
  color: var(--crisp-red);
  font-weight: 700;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 3px solid var(--fresh-green);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--fresh-green);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fresh-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
}

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

nav a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

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

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--fresh-green);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-section {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  order: 1;
}

.hero-image {
  order: 2;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.section {
  margin: 4rem 0;
  padding: 3rem 0;
  border-top: 1px solid var(--medium-gray);
}

.section:first-of-type {
  border-top: none;
}

.section-title {
  margin-bottom: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.grid-2:nth-child(even) {
  direction: rtl;
}

.grid-2:nth-child(even) > * {
  direction: ltr;
}

.grid-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grid-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.section-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.section-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-bottom: 0.75rem;
  color: var(--deep-graphite);
}

.card-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--fresh-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.card-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.faq-section {
  margin: 3rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--medium-gray);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fresh-green);
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.faq-answer {
  color: #555;
  line-height: 1.85;
}

.contact-form {
  max-width: 600px;
  margin: 2rem 0;
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--deep-graphite);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--medium-gray);
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fresh-green);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.1);
}

.form-disclaimer {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #F0F0F0;
  border-left: 4px solid var(--crisp-red);
  border-radius: 4px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--fresh-green);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  background-color: #5aa35f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 187, 106, 0.3);
}

.btn-secondary {
  background-color: var(--crisp-red);
}

.btn-secondary:hover {
  background-color: #d73a38;
}

.disclaimer-section {
  background: #FFF3E0;
  border-left: 4px solid var(--crisp-red);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-title {
  font-weight: 700;
  color: var(--deep-graphite);
  margin-bottom: 0.5rem;
}

.disclaimer-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.educational-banner {
  background: linear-gradient(135deg, var(--fresh-green), rgba(102, 187, 106, 0.8));
  color: white;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem 0;
}

.educational-banner p {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

footer {
  background-color: var(--deep-graphite);
  color: white;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--fresh-green);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--fresh-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep-graphite);
  color: white;
  padding: 1.5rem 2rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 999;
  flex-wrap: wrap;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: flex;
}

.cookie-content {
  flex: 1;
  min-width: 250px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--fresh-green);
  color: white;
}

.cookie-btn-accept:hover {
  background: #5aa35f;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-learn {
  background: var(--crisp-red);
  color: white;
}

.cookie-btn-learn:hover {
  background: #d73a38;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  nav ul {
    gap: 1rem;
    justify-content: center;
    font-size: 0.85rem;
  }

  .hero-section,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .grid-2:nth-child(even) {
    direction: ltr;
  }

  main {
    padding: 0 1rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

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

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

  h2 {
    font-size: 1.4rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  nav ul {
    gap: 0.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .disclaimer-section {
    padding: 1rem;
  }
}
