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

body {
  font-family: Helvetica, Arial, sans-serif;
  color: #2c2c2c;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fdf9 100%);
  line-height: 1.6;
  font-size: 16px;
}

.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(10, 104, 72, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 300;
  color: #0A6848;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-menu a:hover {
  color: #0A6848;
}

.hero {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fdf9 100%);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #0A6848;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-image {
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 2px;
  overflow: hidden;
}

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

.section {
  padding: 4rem 0;
}

.section-alt {
  background: rgba(10, 104, 72, 0.02);
}

h2 {
  font-size: 2rem;
  font-weight: 300;
  color: #0A6848;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #555;
  font-weight: 300;
}

.content-with-image {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.content-with-image.image-left {
  flex-direction: row;
}

.content-with-image.image-right {
  flex-direction: row-reverse;
}

.content-with-image img {
  max-width: 300px;
  height: auto;
  border-radius: 2px;
  flex-shrink: 0;
}

.content-with-image .text-content {
  flex: 1;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th {
  background: rgba(10, 104, 72, 0.05);
  color: #0A6848;
  font-weight: 400;
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid rgba(10, 104, 72, 0.1);
  letter-spacing: 0.3px;
}

td {
  padding: 1rem;
  border-bottom: 1px solid rgba(10, 104, 72, 0.05);
  color: #555;
  font-weight: 300;
}

.btn-info {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1px solid #0A6848;
  color: #0A6848;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 2px;
  font-size: 0.95rem;
}

.btn-info:hover {
  background: rgba(10, 104, 72, 0.05);
  color: #0A6848;
}

.disclaimer-box {
  background: rgba(10, 104, 72, 0.03);
  border-left: 2px solid #0A6848;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #0A6848;
}

.disclaimer-box p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 2px solid rgba(10, 104, 72, 0.2);
}

.faq-item h3 {
  color: #0A6848;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border: 1px solid rgba(10, 104, 72, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
  font-weight: 400;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(10, 104, 72, 0.2);
  background: white;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #0A6848;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.footer {
  background: rgba(10, 104, 72, 0.03);
  border-top: 1px solid rgba(10, 104, 72, 0.1);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #0A6848;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  font-weight: 300;
}

.footer-section a:hover {
  color: #0A6848;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 104, 72, 0.1);
  font-size: 0.85rem;
  color: #777;
  font-weight: 300;
}

.educational-notice {
  background: rgba(10, 104, 72, 0.05);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #0A6848;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(10, 104, 72, 0.2);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(10px);
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  flex: 1;
}

.cookie-banner .btn-info {
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

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

  .content-with-image,
  .content-with-image.image-left,
  .content-with-image.image-right {
    flex-direction: column;
  }

  .content-with-image img {
    max-width: 100%;
  }

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

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

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

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

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }
}
