.actnow-section {
  background: #f6fefb;
  padding: 48px 0;
  font-family: 'Inter', Arial, sans-serif;
  width: 100%;
}
.actnow-title {
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5em;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.act-black {
  color: #222;
}
.act-green {
  color: #93BB39;
}
.actnow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 24px 18px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  justify-items: center;
}
.actnow-card {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(67,184,108,0.09);
  padding: 24px 12px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 160px;
  min-width: 0;
  transition: box-shadow 0.2s;
}
.actnow-card:hover {
  box-shadow: 0 8px 24px rgba(67,184,108,0.13);
}
.actnow-img-wrap {
  background: #fff;
  border-radius: 50%;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 1px 6px rgba(67,184,108,0.07);
}
.actnow-img-wrap img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  display: block;
}
.actnow-desc {
  font-size: 1.05rem;
  color: #3b3b3b;
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 8px;
}

/* Responsive for tablet/mobile */
@media (max-width: 900px) {
  .actnow-title {
    font-size: 1.7em;
    margin-bottom: 22px;
  }
  .actnow-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto);
    gap: 16px 10px;
  }
  .actnow-card {
    max-width: 100%;
    padding: 18px 6px 12px 6px;
  }
  .actnow-img-wrap {
    width: 62px;
    height: 62px;
  }
  .actnow-img-wrap img {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 600px) {
  .actnow-section {
    padding: 18px 0;
  }
  .actnow-title {
    font-size: 1.15em;
    margin-bottom: 12px;
  }
  .actnow-img-wrap {
    width: 48px;
    height: 48px;
  }
  .actnow-img-wrap img {
    width: 36px;
    height: 36px;
  }
}
