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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fafaf8;
}

.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 15px 0;
}

header {
  padding: 20px 0;
  margin-top: 60px;
}

header .logo {
  font-size: 24px;
  font-weight: 700;
  color: #228B22;
  text-decoration: none;
  letter-spacing: 1px;
}

header .logo:hover {
  color: #1a6b1a;
}

nav {
  margin-top: 15px;
}

nav a {
  color: #555;
  text-decoration: none;
  margin-right: 20px;
  font-size: 14px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #228B22;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #228B22;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  color: #444;
}

.hero {
  background: linear-gradient(rgba(34, 139, 34, 0.7), rgba(34, 139, 34, 0.7)), url('images/hero-bg.jpg') center/cover;
  color: white;
  padding: 120px 0;
  text-align: center;
  margin-bottom: 50px;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  color: rgba(255,255,255,0.95);
  font-size: 1.2rem;
  margin-bottom: 0;
}

.section {
  padding: 60px 0;
  border-bottom: 1px solid #e8e8e0;
}

.section:last-child {
  border-bottom: none;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.row.reverse {
  direction: rtl;
}

.row.reverse > * {
  direction: ltr;
}

.text-content {
  padding: 20px;
}

.text-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq {
  margin: 40px 0;
}

.faq-item {
  margin-bottom: 20px;
  border-left: 4px solid #228B22;
  padding-left: 20px;
}

.faq-item strong {
  color: #228B22;
  display: block;
  margin-bottom: 8px;
}

.faq-item p {
  color: #666;
}

.disclaimer {
  background: #f0f7f0;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #228B22;
  margin: 30px 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.cta-section {
  background: #f9f9f7;
  padding: 50px 0;
  text-align: center;
}

.cta-link {
  display: inline-block;
  background: #228B22;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cta-link:hover {
  background: #1a6b1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

footer {
  background: #2d2d2d;
  color: #ccc;
  padding: 50px 0 20px;
  margin-top: 60px;
}

footer h4 {
  color: #228B22;
  font-size: 1rem;
  margin-bottom: 15px;
}

footer p {
  color: #999;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

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

footer a:hover {
  color: #fff;
}

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

.footer-section h4 {
  margin-top: 0;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

.educational-notice {
  background: #fff4e6;
  border: 1px solid #ffd699;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #666;
  margin: 20px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #228B22;
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.btn-submit {
  background: #228B22;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #1a6b1a;
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d2d2d;
  color: #fff;
  padding: 20px;
  z-index: 999;
  display: none;
}

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

.cookie-banner p {
  color: #fff;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.cookie-btn.accept {
  background: #228B22;
  color: white;
}

.cookie-btn.accept:hover {
  background: #1a6b1a;
}

.cookie-btn.reject {
  background: transparent;
  color: #fff;
  border: 1px solid #666;
}

.cookie-btn.reject:hover {
  border-color: #fff;
}

@media (max-width: 768px) {
  .row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

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

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.toc {
  background: #f9f9f7;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid #228B22;
}

.toc h3 {
  margin-top: 0;
}

.toc ul {
  list-style: none;
  padding: 0;
}

.toc li {
  margin-bottom: 8px;
}

.toc a {
  color: #228B22;
  text-decoration: none;
  transition: color 0.3s ease;
}

.toc a:hover {
  color: #1a6b1a;
  text-decoration: underline;
}
