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

body {
  background: #f5f5f5;
  color: #111827;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 40px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.section-text {
  font-size: 14px;
  color: #6b7280;
  max-width: 760px;
}

/* ====== Buttons ====== */
.btn-primary {
  background: #006a50;
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid #047857;
  background: transparent;
  color: #047857;
  padding: 6px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn-small {
  display: inline-block;
  border-radius: 999px;
  background: #5490f5;
  color: #fff;
  margin-top: 18px;
  border: none;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
}

.btn-small.green { background: #09a15c; }
.btn-small.yellow { background: #ffc239; }

/* ====== Topbar ====== */
.topbar {
  background: #f3f4f6;
  padding: 14px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 32px;
  font-weight: 600;
}

/* ====== Hero ====== */
.hero {
  padding: 24px 0 40px;
}

.hero-inner {
  background: #bcf8cc;
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-left {
  max-width: 420px;
}

.hero-tag {
  font-size: 24px;
  color: #6b7280;
  margin-bottom: 8px;
}

.hero-left h1 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.hero-right img {
  max-width: 260px;
  width: 100%;
}

/* ====== Pillars ====== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 16px;
  margin: 8px 0;
}

.card p {
  font-size: 13px;
  color: #6b7280;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-circle img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* ====== Vision cards ====== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.card.colored {
  border: none;
}

.card.blue { background: #dbeafe; }
.card.green { background: #dcfce7; }
.card.yellow { background: #fef9c3; }

/* ====== Quote ====== */
.quote-box {
  margin-top: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  border-left: 4px solid #15803d;
  font-size: 14px;
  color: #4b5563;
}

.quote-author {
  margin-top: 12px;
  font-weight: 600;
}

.quote-role {
  font-size: 12px;
  color: #6b7280;
}

/* ====== Opinion table ====== */
.opinion-card {
  margin-top: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.opinion-row {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  font-size: 13px;
  color: #111827;
  padding: 14px 18px;
  border-top: 1px solid #e5e7eb;
}

.opinion-row:first-child {
  border-top: none;
}

.opinion-head {
  background: #d1fae5;
  font-weight: 600;
}

.opinion-row .right {
  text-align: right;
}

.opinion-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 6px;
  border: 1px solid #16a34a;
  background: #dcfce7;
  color: #065f46;
  font-size: 13px;
  cursor: pointer;
}

/* ====== News ====== */
.news-card {
  margin-top: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
}

.news-card.reverse {
  flex-direction: row-reverse;
}

.news-image {
  flex: 0 0 320px;
  max-width: 320px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-content {
  flex: 1;
  padding: 18px 20px;
}

.news-content h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.news-meta {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 4px;
}

.news-text {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
}

.news-card .btn-small {
  background: #006a50;
  border-radius: 999px;
  padding: 6px 18px;
}

/* ====== Donate ====== */
.donate {
  text-align: center;
}

.donate-options {
  margin: 16px 0 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.donate-box {
  min-width: 90px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.donate-box.active {
  background: #dcfce7;
  border-color: #15803d;
  color: #15803d;
}

.donate-input-wrapper {
  max-width: 700px;
  margin: 0 auto 20px;
  text-align: center;
}

.donate-input-full {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.donate-btn-center {
  margin-top: 24px; 
  padding: 9px 26px;
  background: #006A50;
  border-radius: 4px;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* ====== Newsletter ====== */
.newsletter {
  background: #dcfce7;
}

.newsletter-inner {
  text-align: center;
}

.newsletter-form {
  margin: 14px auto;
  max-width: 460px;
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.newsletter-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

/* ====== Footer ====== */
.footer {
  padding: 20px 0 30px;
  text-align: center;
  font-size: 13px;
  color: #4b5563;
}

.social {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    margin-bottom: 16px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .opinion-row {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .opinion-row .right {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 24px 20px;
  }
}
