
.cfo-box {
  background: #f5fff5;
  border: 2px solid #014421;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  margin: 10px 0 20px 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  animation: fadeIn 1s ease-in-out;
}
.cfo-title {
  color: #014421;
  font-weight: bold;
  font-size: 21px;
  margin-bottom: 12px;
}
.cfo-timer {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-weight: bold;
  font-size: 20px;
  color: #014421;
  flex-wrap: wrap;
}
.cfo-timer div {
  text-align: center;
}
.cfo-num {
  display: block;
  font-size: 28px;
  text-shadow: 0 0 1px #014421;
}
.cfo-bottom-text {
  font-size: 15px;
  margin-top: 8px;
  color: #444;
  font-weight: 500;
}
@media (max-width: 600px) {
  .cfo-title {
    font-size: 22px;
  }
  .cfo-num {
    font-size: 32px;
  }
  .cfo-timer {
    font-size: 18px;
  }
  .cfo-bottom-text {
    font-size: 14px;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
