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

:root {
  --primary-color: #4CAF50;
  --accent-1: #FFC107;
  --accent-2: #2196F3;
  --accent-3: #795548;
  --bg-light: #f9f9f9;
  --text-dark: #212121;
  --text-light: #757575;
  --border-light: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
}

h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-2);
}

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

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

header .logo {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  cursor: pointer;
  text-decoration: none;
}

header nav a {
  margin-left: 2rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

header nav a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

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

footer .footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

footer .footer-section p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

footer .footer-section a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

footer .disclaimer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 2rem;
}

footer .copyright {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-light);
  font-size: 0.85rem;
}

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

.hero-section {
  margin-top: 70px;
  height: 600px;
  background: linear-gradient(rgba(76, 175, 80, 0.3), rgba(76, 175, 80, 0.3)), url('images/hero-landscape.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.hero-section h1 {
  font-size: 3.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.3rem;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

section {
  padding: 4rem 0;
}

section.light {
  background-color: var(--bg-light);
}

section.accent-1 {
  background-color: rgba(255, 193, 7, 0.08);
}

section.accent-2 {
  background-color: rgba(33, 150, 243, 0.08);
}

section.accent-3 {
  background-color: rgba(121, 85, 72, 0.08);
}

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

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

.two-column.reverse > div:first-child {
  order: 2;
}

.two-column.reverse > div:last-child {
  order: 1;
}

.image-block {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

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

.card {
  background-color: #ffffff;
  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 var(--primary-color);
}

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

.card h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.card-image {
  margin-bottom: 1rem;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  font-size: 0.95rem;
}

.cta-button:hover {
  background-color: #45a049;
  border-color: #45a049;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

ul li, ol li {
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.disclaimer-block {
  background-color: rgba(33, 150, 243, 0.1);
  border-left: 4px solid var(--accent-2);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-block h4 {
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}

.disclaimer-block p {
  font-size: 0.95rem;
  margin: 0;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
}

.contact-form {
  max-width: 600px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem;
  z-index: 999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: #ffffff;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: var(--primary-color);
  color: #ffffff;
}

.cookie-btn.accept:hover {
  background-color: #45a049;
}

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

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

.cookie-btn.learn-more {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cookie-btn.learn-more:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

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

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

.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-answer {
  margin-top: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.hero-text {
  padding: 2rem 0;
}

.hero-text h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.timeline-point {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: relative;
  top: 8px;
}

.timeline-content {
  padding-bottom: 1rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-section {
    height: 400px;
    margin-top: 80px;
  }

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

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

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

  .two-column.reverse > div:first-child,
  .two-column.reverse > div:last-child {
    order: unset;
  }

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

  header nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  header nav a {
    margin-left: 0;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
  }

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

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

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

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

  .contact-form {
    max-width: 100%;
  }

  .container {
    padding: 0 1rem;
  }

  header .navbar {
    padding: 0 1rem;
  }
}
