.faq {
  width: min(608px, 100%);
  margin: 0 auto clamp(3.5rem,calc(1.33132rem + 6.0241vw),7.5rem);
  
  h2 {
    margin-bottom: 52px;
    text-align: center;
  }
}


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  cursor: pointer;
  padding: 27px 0;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: max-height 0.4s;
  color: var(--Dark-Black, #0B0B0B);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 115%; /* 20.7px */
  background: transparent !important;
  outline: none;
  border-bottom: 1px solid #F3F3F3;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 16px;
  
  &:after {
    display: inline-flex;
    content: '';
    transition: transform .25s;
    width: 16px;
    height: 17px;
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M12 6.5L8 10.5L4 6.5' stroke='%230B0B0B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background: transparent !important;
  color: color: var(--Dark-Black, #0B0B0B) !important;
}

.active {
  border-bottom: 0px;
}

.active:after {
  transform: rotate(180deg);
}
.active + .panel {
  padding: 0 0 27px;
  border-bottom: 1px solid #F3F3F3;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  
  p {
    margin: 0;
  }
}