* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; border-radius: 14px;
}

body {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #1f2933;
  background: #ffffff;
  line-height: 1.65;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.light-bg {
  background: #f9fafb;
}

.section h2 {
  color: #5b7f2b;
  font-size: 34px;
  margin-bottom: 18px;
}

.section p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 12px;
}

/* Two column layout */
.two-col {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;  background-color: #f3f5f1;
}

.two-col.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.image-block img {
  width: 100%; height: 250px;
  border-radius: 14px; object-fit: cover;
}

/* Center section */
.center-section {
  text-align: center;
}

.center-title {
  margin-bottom: 50px;
}

/* Oval highlights */
.oval-grid {
  display: flex;
  flex-direction: column; justify-content: space-between;
  gap: 28px; align-items: center;
  justify-items: center;
}

.oval-item {
  width: 100%;
  max-width: 600px;
  padding: 12px 30px;
  border: 1px solid #e5e7eb;
  border-radius: 14px; 
  background:linear-gradient(90deg, #283B91, #5A7931);
}

.oval-item h3 {
  font-size: 18px; color: #99cb58;
  margin-bottom: 6px;
}

.oval-item p {
  font-size: 15px;
  color:#ffffff ;
}

/* Responsive */
@media (max-width: 900px) {
  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
  }

  .oval-grid {
    grid-template-columns: 1fr;
  }

  .oval-item {
    border-radius: 12px;
  }
}
