.fertility-calculator-section {
  margin-top: 100px;
}

/* General Accordion Styling */
.accordion-item {
  margin-bottom: 8px;
  border-radius: var(--radius-2xl, 24px);
  background: var(--uiBg-screen-00, #fff);
  -webkit-box-shadow: 0px 87px 24px 0px rgba(117, 75, 16, 0), 0px 56px 22px 0px rgba(117, 75, 16, 0), 0px 31px 19px 0px rgba(117, 75, 16, 0.01), 0px 14px 14px 0px rgba(117, 75, 16, 0.02), 0px 3px 8px 0px rgba(117, 75, 16, 0.02);
          box-shadow: 0px 87px 24px 0px rgba(117, 75, 16, 0), 0px 56px 22px 0px rgba(117, 75, 16, 0), 0px 31px 19px 0px rgba(117, 75, 16, 0.01), 0px 14px 14px 0px rgba(117, 75, 16, 0.02), 0px 3px 8px 0px rgba(117, 75, 16, 0.02);
}

.accordion-item:last-child {
  border-bottom: none;
}

/* Trigger (Button) Styling */
.accordion-trigger {
  width: 100%;
  margin: 0;
  border-radius: 24px;
  background-color: #fff;
  text-align: left;
  padding: 20px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--uiInk-tone-04, #334155);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  position: relative;
  text-shadow: none !important;
}
.accordion-trigger p {
  width: 90%;
}
.accordion-trigger span {
  width: 24px;
  color: #bb8401;
  font-size: 14px;
  height: 24px;
  text-align: center;
  border-radius: var(--rounded-lg, 8px);
  border: var(--border-width-0, 1px) solid var(--uiStroke-warning-01, #ca8a04);
  background: var(--uiBg-brand-yellow-00, #fdfbf6);
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}
.accordion-trigger::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/icons/arrow_down.svg") no-repeat;
  background-size: cover;
  position: absolute;
  right: 20px;
  top: 30%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-trigger[aria-expanded=true]::after {
  rotate: 180deg;
}

.accordion-trigger:hover {
  background-color: #fff9f2;
}

/* Content Styling */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fdfdfd;
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-radius: 0 0 16px 16px;
}
.accordion-content_wrapper {
  border-top: 1px dashed #e2e8f0;
  padding: 20px;
  gap: 24px;
  color: var(--uiInk-tone-03, #64748b);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.accordion-content.open {
  max-height: 200px;
  padding: 16px;
}

/* Utility classes */
.accordion-content p {
  margin: 0;
}