 :root {
      --brand-green: #16a34a;
      --brand-white: #ffffff;
      --text-dark: #1a1a1a;
      --text-gray: #555;
      --card-bg: #f9f9f9;
    }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: var(--brand-white);
      color: var(--text-dark);
      line-height: 1.6;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 20px;
    }

    .section-title {
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--brand-green);
      font-weight: bold;
    }

    /* Latest news (horizontal scroll) */
    .latest-scroll {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 10px;
    }
    .latest-scroll::-webkit-scrollbar {
      height: 6px;
    }
    .latest-scroll::-webkit-scrollbar-thumb {
      background: var(--brand-green);
      border-radius: 3px;
    }
    .latest-item {
      flex: 0 0 240px;
      border-radius: 10px;
      overflow: hidden;
      background: var(--card-bg);
      border: 1px solid #eee;
      cursor: pointer;
    }
    .latest-item img {
      width: 100%;
      height: 140px;
      object-fit: cover;
    }
    .latest-item p {
      margin: 8px;
      font-size: 14px;
      font-weight: bold;
    }

    /* Big main news */
    .main-news {
      margin: 24px 0;
    }
    .main-news img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 10px;
    }
    .main-news h2 {
      font-size: 22px;
      margin-top: 10px;
      color: var(--brand-green);
    }

    /* Other news list */
    .other-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .other-item {
      display: flex;
      gap: 12px;
      background: var(--card-bg);
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 8px;
      align-items: center;
    }
    .other-item img {
      width: 100px;
      height: 70px;
      object-fit: cover;
      border-radius: 6px;
      flex-shrink: 0;
    }
    .other-text h4 {
      margin: 0 0 6px;
      font-size: 16px;
      color: var(--brand-green);
    }
    .other-text p {
      margin: 0;
      font-size: 13px;
      color: var(--text-gray);
    }

    /* Load more button */
    .load-more {
      margin: 24px auto 0;
      text-align: center;
    }
    .load-more button {
      padding: 10px 20px;
      background: var(--brand-green);
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .load-more button:hover {
      background: #128436;
    }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.see-more-btn {
  font-size: 13px;
  color: var(--brand-green);
  text-decoration: none;
  font-weight: bold;
  border: 1px solid var(--brand-green);
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.see-more-btn:hover {
  background: var(--brand-green);
  color: #fff;
}

/* Responsive adjustment */
@media (max-width: 600px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .see-more-btn {
    align-self: flex-end;
  }
}
