.action-box {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.action-box__image-wrapper {
  margin: 20px 0;
}

.action-box__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.action-box__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.action-box__description {
  color: #666666;
  margin-bottom: 10px;
  line-height: 1.5;
}

.action-box__button-wrapper {
  background-color: #f0f7ff;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
}

.action-box__button-wrapper  {
  background-color: #9fff8f;
}

.action-box__button-wrapper .action-box__button {
  background-color: #2e7d32;
}

@media (max-width: 768px) {
  .action-box {
    padding: 16px;
    margin: 16px 0;
  }

  .action-box__image-wrapper {
    margin: 16px 0;
  }

  .action-box__title {
    font-size: 1.1rem;
  }

  .action-box__button-wrapper {
    padding: 16px;
  }
}

@media (prefers-color-scheme: dark) {
  .action-box {
    background-color: #343a40;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .action-box__title {
    color: #f8f9fa;
  }

  .action-box__description {
    color: #dee2e6;
  }
}
