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

/* BODY */
body {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  background: #f5f7fb;
  color: #333;
  line-height: 1.7;
  padding-top: 90px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Push footer to bottom when content is short */
#footer {
  margin-top: auto;
}

.menu-toggle, .menu-close {
  display: none;
}
h1 {
  text-align: center;
  color: #2e7d32;
}

/* SECTION */
.section {
  padding: 24px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  color: #1b5e20;
  font-size: 28px;
  font-weight: 600;

  padding: 0; /* remove left shift */
  margin-top: 32px; /* space above heading */
  margin-bottom: 20px; /* space below heading */
}

.section p {
  font-size: 16px;
  padding-top: 16px;
  color: #444;
  text-align: justify;
}

ul {
  padding: 10px;
  text-align: justify;
}
ul li {
  padding: 4px;
}

/* TWO COLUMN */
.two-col {
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.two-col img {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 400px;
  border-radius: 10px;
  object-fit: cover;
}

.center-image {
  display: block;
  margin: 20px 0;
}

.center-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.two-col .text {
  flex: 1;
}

/* HIGHLIGHT BOX */
.highlight {
  background: #f1f8f4;
  padding: 25px;
  border-left: 5px solid #2e7d32;
  margin: 30px 0;
  font-weight: 500;
}

/* SIMPLE WORDING BOX */
.simple-box {
  background: #e8f5e9;
  padding: 25px;
  margin-top: 30px;
  border-radius: 8px;
}

.simple-box h3 {
  margin-bottom: 10px;
  color: #1b5e20;
}

/* VALUES */
.values {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.value-card {
  flex: 1;
  min-width: 250px;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  color: #1b5e20;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
  .section {
    padding: 30px 16px;
  }
  .two-col {
    flex-direction: column;
    gap: 20px;
  }
  .section h2 {
    font-size: 24px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
}
