body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #e3f2e1;
  color: #2f3e2f;
  padding: 0;
  overflow-x: hidden;
  font-size: 1rem;
}

header {
  background-color: #357a38;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-wrapper {
  background: white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.header-text {
  display: flex;
  flex-direction: column;
}

.header-text h1 {
  margin: 0;
  font-size: 1.8rem;
}

.header-text p {
  margin: 0.2rem 0 0 0;
  font-size: 1rem;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tab-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  background-color: #d5ead3;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  color: #2d572c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tab-buttons button.active {
  background-color: #357a38;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.section-wrapper {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.section-wrapper.reverse {
  flex-direction: row-reverse;
}

.section-image {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-image img {
  flex: 1;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  max-width: 100%;
}

.section-content {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 80, 0, 0.1);
  flex: 1;
}

h2 {
  color: #2d572c;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  body {
    padding: 0 1rem;
  }

  .container {
    padding: 1rem;
  }

  .section-wrapper {
    flex-direction: column;
  }

  .section-wrapper.reverse {
    flex-direction: column !important;
  }

  .section-image {
    width: 100%;
    order: -1;
  }

  .section-content {
    padding: 1rem;
  }

  .tab-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .header-text {
    align-items: center;
  }

  #language-select {
    align-self: flex-end;
    width: 100%;
    font-size: 1rem;
    padding: 0.6rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .header-text h1 {
    font-size: 1.4rem;
  }

  .tab-buttons button {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }

  .section-content {
    font-size: 0.95rem;
  }

  h2 {
    font-size: 1.2rem;
  }
}
