.consumer-charge-notice {
  margin: 0 0 48px;
  overflow: hidden;
  border: 1px solid #d8e3cf;
  border-top: 5px solid #97d51b;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(34, 57, 28, 0.1);
  color: #373d30;
}

.consumer-charge-notice__header {
  display: flex;
  gap: 22px;
  padding: 30px 34px 26px;
  background: linear-gradient(135deg, #f4f9ef 0%, #fff 72%);
}

.consumer-charge-notice__icon {
  display: flex;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #237919;
  box-shadow: 0 7px 18px rgba(35, 121, 25, 0.2);
  color: #fff;
  font-size: 25px;
}

.consumer-charge-notice .consumer-charge-notice__eyebrow {
  margin: 1px 0 6px;
  color: #237919;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.consumer-charge-notice h2 {
  margin: 0;
  color: #21331d;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
}

.consumer-charge-notice h2::after {
  display: none;
}

.consumer-charge-notice .consumer-charge-notice__intro {
  max-width: 970px;
  margin: 13px 0 0;
  color: #3d4938;
  font-size: 17px;
  line-height: 1.65;
}

.consumer-charge-notice__body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 30px;
  padding: 30px 34px;
}

.consumer-charge-notice h3 {
  margin: 0 0 10px;
  color: #21331d;
  font-size: 20px;
}

.consumer-charge-notice__body p,
.consumer-charge-notice__body li {
  font-size: 15px;
  line-height: 1.65;
}

.consumer-charge-notice__steps > p {
  margin: 0 0 15px;
}

.consumer-charge-notice__steps ol {
  margin: 0;
  padding: 0;
  counter-reset: consumer-steps;
  list-style: none;
}

.consumer-charge-notice__steps li {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 10px;
  counter-increment: consumer-steps;
}

.consumer-charge-notice__steps li::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #eaf5df;
  color: #237919;
  content: counter(consumer-steps);
  font-size: 13px;
  font-weight: 700;
}

.consumer-charge-notice__details {
  align-self: start;
  padding: 23px 24px;
  border-left: 4px solid #069fe7;
  border-radius: 4px 9px 9px 4px;
  background: #f2f9fd;
}

.consumer-charge-notice__details p {
  margin: 0;
}

.consumer-charge-notice__details p + p {
  margin-top: 14px;
}

.consumer-charge-notice__details a {
  color: #087eae;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consumer-charge-notice__footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 17px 34px;
  border-top: 1px solid #d8e3cf;
  background: #edf6e5;
  color: #21331d;
  font-size: 15px;
  line-height: 1.55;
}

.consumer-charge-notice__footer p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.consumer-charge-notice__footer .fa-circle-check {
  margin-top: 4px;
  color: #237919;
}

.consumer-charge-notice__learn-more {
  flex: 0 0 auto;
  color: #17630f;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.consumer-charge-notice__learn-more .fa-arrow-right {
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.consumer-charge-notice__learn-more:hover,
.consumer-charge-notice__learn-more:focus {
  color: #087eae;
  text-decoration: underline;
}

.consumer-charge-notice__learn-more:hover .fa-arrow-right,
.consumer-charge-notice__learn-more:focus .fa-arrow-right {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .consumer-charge-notice {
    margin-bottom: 34px;
  }

  .consumer-charge-notice__header {
    display: block;
    padding: 24px 22px 22px;
  }

  .consumer-charge-notice__icon {
    margin-bottom: 16px;
  }

  .consumer-charge-notice__body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 22px;
  }

  .consumer-charge-notice__details {
    padding: 20px;
  }

  .consumer-charge-notice__footer {
    display: block;
    padding: 16px 22px;
  }

  .consumer-charge-notice__learn-more {
    display: inline-block;
    margin-top: 12px;
  }
}
