.bra-fit-container {
  border-radius: 20px;
  background-color: #f7e9ef;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  width: 100%;
  max-width: 554px;
  flex-direction: column;
  align-items: center;
  padding: 13px 6px 20px;
  justify-content: center;
}

.question-header {
  display: flex;
  width: 100%;
  max-width: 421px;
  flex-direction: column;
  color: #c63093;
  text-align: center;
  font: 700 24px "Josefin Sans", sans-serif;
}

.question-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 30px;
  align-self: flex-end;
}

.fit-options {
  display: flex;
  gap: 20px;
  margin-top: 5px;
  width: 100%;
}

.fit-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font: 16px "Josefin Sans", sans-serif;
}

.fit-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.fit-label {
  border-radius: 40px;
  background-color: #fdf8dc;
  z-index: 10;
  margin-top: -7px;
  width: 156px;
  max-width: 100%;
  color: #c63093;
  font-weight: 500;
  letter-spacing: 1.28px;
  line-height: 2;
  padding: 7px 20px 17px;
  border: 1px solid #000;
}

.fit-description {
  color: #000;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.8px;
  margin-top: 10px;
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  margin-top: 37px;
  width: 100%;
  max-width: 100%;
  gap: 9px;
}

.nav-button {
  border-radius: 40px;
  background-color: #c63093;
  color: #fff;
  font: 700 20px "Josefin Sans", sans-serif;
  padding: 14px 38px;
  text-align: center;
  white-space: nowrap;
}

.progress-bar {
  border-radius: 100px;
  background-color: #fff;
  display: flex;
  margin-top: 37px;
  width: 461px;
  max-width: 100%;
}

.progress-indicator-4 {
  border-radius: 100px;
  background-color: #c63093;
  width: 80%;
  max-width: 100%;
  height: 18px;
}

.start-over-button {
  border-radius: 40px;
  background-color: #fff;
  margin-top: 37px;
  width: 147px;
  max-width: 100%;
  color: #000;
  padding: 13px 16px;
  font: 500 20px "Josefin Sans", sans-serif;
  border: 1px solid #c63093;
}

.assistance-link {
  color: #c63093;
  letter-spacing: 1.28px;
  text-align: center;
  margin-top: -5px;
  font: 600 16px/2 "Josefin Sans", sans-serif;
}

@media (max-width: 991px) {
  .question-header {
    max-width: 100%;
    margin-right: 10px;
  }

  .fit-options {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .fit-option {
    width: 100%;
  }

  .navigation-buttons {
    white-space: initial;
  }

  .nav-button {
    padding: 14px 20px;
  }

  .progress-bar {
    padding-right: 20px;
  }

  .start-over-button {
    padding: 15px 20px;
  }
}
/* //animation */
/* Initially hide the second question section */
.q4 {
  display: none;
}

/* Simple fade-in and fade-out animations */
.fade-in {
  animation: fadeIn 0.3s ease-in forwards;
}

.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.bottom-section {
  display: flex;
  justify-content: center;
}
