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

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fdf9 100%);
  min-height: 100vh;
}

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

header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #0B5E38;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: color 0.3s;
  padding: 8px 12px;
}

nav a:hover {
  color: #0B5E38;
}

main {
  margin-top: 80px;
  padding: 40px 0;
}

.hero {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 48px;
  color: #0B5E38;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero p {
  font-size: 20px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 30px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
}

.section {
  margin-bottom: 80px;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #e5e5e5;
}

.section h2 {
  font-size: 32px;
  color: #0B5E38;
  margin-bottom: 30px;
  font-weight: 600;
}

.section h3 {
  font-size: 24px;
  color: #0B5E38;
  margin-bottom: 20px;
  margin-top: 30px;
  font-weight: 500;
}

.section p {
  margin-bottom: 20px;
  color: #555;
  font-size: 16px;
}

.section-image {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin: 20px;
}

.section-image.float-left {
  float: left;
  margin-right: 40px;
  margin-left: 0;
}

.section-image.float-right {
  float: right;
  margin-left: 40px;
  margin-right: 0;
}

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

.disclaimer-box {
  background: #f8fdf9;
  border-left: 4px solid #0B5E38;
  padding: 30px;
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: #0B5E38;
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

table th {
  background: #0B5E38;
  color: #ffffff;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

table tr:hover {
  background: #f8fdf9;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.faq-item h3 {
  color: #0B5E38;
  margin-top: 0;
}

.cta-box {
  background: linear-gradient(135deg, #0B5E38 0%, #0d7547 100%);
  color: #ffffff;
  padding: 60px 40px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 0;
}

.cta-box h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-box p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: #0B5E38;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background: #f8fdf9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #0B5E38;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0B5E38;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  background: #f8fdf9;
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
  border: 1px solid #e5e5e5;
}

.contact-info h3 {
  color: #0B5E38;
  margin-top: 0;
}

.contact-info p {
  margin: 10px 0;
  color: #555;
}

footer {
  background: #0B5E38;
  color: #ffffff;
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 4px solid #0d7547;
}

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

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 0.8;
}

.footer-section p {
  color: #ffffff;
  margin: 8px 0;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 14px;
}

.educational-notice {
  background: #fff9e6;
  border: 2px solid #ffd700;
  padding: 20px;
  text-align: center;
  margin: 40px 0;
  border-radius: 8px;
}

.educational-notice p {
  margin: 0;
  color: #333;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-banner p {
  margin: 0;
  color: #333;
  font-size: 14px;
  flex: 1;
}

.cookie-banner button {
  padding: 10px 30px;
  background: #0B5E38;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.cookie-banner button:hover {
  background: #0d7547;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 40px 20px;
  }

  .section h2 {
    font-size: 24px;
  }

  .section-image.float-left,
  .section-image.float-right {
    float: none;
    display: block;
    margin: 20px auto;
    max-width: 100%;
  }

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

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