:root {
  --accent-color: #0A5C38;
  --accent-light: #0d7447;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f0f5f3 100%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-gradient);
  min-height: 100vh;
}

header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(10, 92, 56, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

header .container {
  padding: 1rem 15px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
  color: var(--accent-color);
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

main {
  margin-top: 70px;
}

.hero {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,245,243,0.95) 100%);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(10, 92, 56, 0.15);
  margin-top: 2rem;
}

.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background: #ffffff;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

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

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

.section ul, .section ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.section li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.content-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(10, 92, 56, 0.12);
  margin: 1.5rem 0;
}

.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%;
}

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

.disclaimer-box h3 {
  color: var(--accent-color);
  margin-top: 0;
}

.cta-box {
  background: linear-gradient(135deg, #0A5C38 0%, #0d7447 100%);
  color: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 6px 24px rgba(10, 92, 56, 0.2);
}

.cta-box h3 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.btn-cta {
  background: #ffffff;
  color: var(--accent-color);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: var(--accent-color);
  text-decoration: none;
}

.table {
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(10, 92, 56, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.table thead {
  background: var(--accent-color);
  color: #ffffff;
}

.table th {
  font-weight: 600;
  padding: 1rem;
}

.table td {
  padding: 1rem;
  vertical-align: top;
}

.faq-item {
  background: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(10, 92, 56, 0.08);
}

.faq-item h3 {
  color: var(--accent-color);
  margin-top: 0;
  font-size: 1.2rem;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(10, 92, 56, 0.12);
  margin: 2rem 0;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
}

.btn-submit {
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

footer {
  background: #2c3e50;
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer li {
  margin-bottom: 0.5rem;
}

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

.educational-notice {
  background: #e8f5e9;
  border: 2px solid var(--accent-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
  color: var(--accent-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner a {
  color: #4fc3f7;
  text-decoration: underline;
}

.btn-cookie {
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-cookie:hover {
  background: var(--accent-light);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section h2 {
    font-size: 1.5rem;
  }
  
  nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }
  
  .content-image.float-left,
  .content-image.float-right {
    float: none;
    margin: 1.5rem auto;
    max-width: 100%;
    display: block;
  }
  
  .cta-box {
    padding: 2rem 1rem;
  }
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
