:root {
  --primary-accent: #2e7d32;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --text-dark: #212121;
  --text-medium: #424242;
  --text-light: #757575;
  --border-light: #e0e0e0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1,
h2,
h3 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.navbar {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-accent) !important;
}

.nav-link {
  color: var(--text-medium) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-accent) !important;
  background-color: rgba(46, 125, 50, 0.1);
}

.hero-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-content h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 4rem 0;
}

.content-section:nth-child(even) {
  background-color: var(--bg-white);
}

.section-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.section-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.image-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.info-box {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(76, 175, 80, 0.1) 100%);
  border-left: 4px solid var(--primary-accent);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.info-box h3 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.info-box p {
  margin-bottom: 0;
  color: var(--text-medium);
}

.btn-read-more {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-read-more:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-accent) 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.disclaimer-section {
  background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
  border: 1px solid #ffe082;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.disclaimer-section h3 {
  color: #f57c00;
}

footer {
  background: linear-gradient(135deg, #263238 0%, #37474f 100%);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

footer h3 {
  color: var(--primary-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

footer a:hover {
  color: var(--primary-light);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

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

.educational-notice {
  background: rgba(46, 125, 50, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.educational-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  text-align: center;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  background: var(--primary-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-btn:hover {
  background: var(--primary-dark);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-light) 100%);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.content-page {
  padding: 3rem 0;
}

.content-page .section-card {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

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

.thank-you-content {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #fff;
  font-size: 2rem;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
    min-height: 300px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

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

  .image-grid img {
    height: 200px;
  }

  .content-section {
    padding: 2rem 0;
  }

  .section-card {
    padding: 1.5rem;
  }

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

  footer {
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 992px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-content p {
    text-align: left;
  }
}
