:root {
  --primary-green: #155724;
  --light-green: #d4edda;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --background-white: #ffffff;
  --background-light: #f8f9fa;
  --border-color: #dee2e6;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: linear-gradient(to bottom, #ffffff 0%, #f4f8f5 100%);
  line-height: 1.6;
  font-size: 16px;
}

.navbar {
  background-color: var(--background-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  margin-right: 0.75rem;
  border-radius: 4px;
}

.navbar-brand:hover {
  color: var(--primary-green);
  opacity: 0.85;
}

.hero-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, var(--light-green) 100%);
}

.hero-section h1 {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.hero-section p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

.section-title {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.section-subtitle {
  color: var(--primary-green);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.content-image.float-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

.content-image.float-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.card-title {
  color: var(--primary-green);
  font-weight: 600;
}

.disclaimer-box {
  background-color: var(--light-green);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0f4419;
  border-color: #0f4419;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(21, 87, 36, 0.3);
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

.table {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table thead th {
  background-color: var(--primary-green);
  color: white;
  border: none;
  font-weight: 600;
  padding: 1rem;
}

.table tbody tr:hover {
  background-color: var(--light-green);
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  border-left: 3px solid var(--primary-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(21, 87, 36, 0.15);
}

.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--light-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
}

.educational-notice {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.educational-notice strong {
  color: #856404;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .content-image.float-left,
  .content-image.float-right {
    float: none;
    max-width: 100%;
    margin: 1rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 3rem 0 2rem;
  }
  
  .content-section {
    padding: 2rem 0;
  }
}
