:root {
  --sage-green: #8a9a85;
  --sage-green-light: #a8b5a3;
  --sage-green-dark: #6d7d68;
  --text-primary: #2c3e50;
  --text-secondary: #5a6c7d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  color: var(--text-primary);
}

h2 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-top: 2rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

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

.header-nav {
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  border-radius: 4px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-green);
  text-decoration: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--sage-green);
  text-decoration: none;
}

.hero-section {
  background: linear-gradient(135deg, var(--sage-green-light) 0%, var(--sage-green) 100%);
  color: white;
  padding: 120px 0 60px;
  margin-top: 70px;
}

.hero-section h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
}

.content-section {
  padding: 60px 0;
}

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

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

.btn-info-read {
  background-color: var(--sage-green);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s;
  margin-top: 1rem;
}

.btn-info-read:hover {
  background-color: var(--sage-green-dark);
  color: white;
  text-decoration: none;
}

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

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

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-secondary);
}

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

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

.footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--sage-green-light);
  text-decoration: none;
}

.footer-section p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

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

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

.cookie-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.btn-cookie-accept {
  background-color: var(--sage-green);
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
}

.form-control:focus {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 0.2rem rgba(138, 154, 133, 0.25);
}

.table {
  background-color: var(--bg-white);
}

.table th {
  background-color: var(--sage-green-light);
  color: white;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 100px 0 40px;
  }
  
  .content-section {
    padding: 40px 0;
  }
  
  .section-image {
    margin: 1rem auto;
    display: block;
  }
}
