/* Styles for the entire FAQ section */
.faq-section {
  background-color: var(--black);
  color: var(--white);
  padding: 2em 0;
}

/* Styles for the container of the FAQ section */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Styles for individual columns in the FAQ section */
.faq-column {
  padding: 0 1em;
}

/* Styles for the FAQ section title */
.faq-title {
  font-size: 10em;
  color: #08a3ff;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

/* Styles for the list of FAQs */
.faq-list {
  list-style: none;
  padding: 0;
}

/* Styles for individual FAQ items in the list */
.faq-list li {
  margin-bottom: 1.5em;
}

/* Styles for the FAQ item title in the list */
.faq-list h3 {
  font-size: 1em;
  font-weight: 600;
  color: #08a3ff;
  text-transform: uppercase;
}

/* Styles for the FAQ item description in the list */
.faq-list p {
  font-size: 1em;
  font-weight: lighter;
  color: var(--white);
}

/* Styles for the container of the FAQ section button */
.faq-container-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2em 0;
}

/* Styles for the FAQ section button */
.faq-button {
  height: 45px;
  width: 253px;
  background: transparent linear-gradient(262deg, #5907ff 0%, #1728ff 1000%) 0%
    0% no-repeat padding-box;
  box-shadow: 0px 3px 24px #3172ff;
  border: 3px solid #ffffff;
  border-radius: 8px;
  opacity: 1;
  text-transform: uppercase;
  cursor: pointer;
}

/* Media query for responsive design when the screen width is 900px or less */
@media only screen and (max-width: 900px) {
  .faq-column {
    width: 90%;
  }

  /* Adjusting styles for the FAQ section title in smaller screens */
  .faq-title {
    font-size: 5em;
    text-align: center;
  }
}

/* Media query for responsive design when the screen width is more than 900px */
@media only screen and (min-width: 900px) {
  /* Adjusting styles for the FAQ section container in larger screens */
  .faq-container {
    display: flex;
    justify-content: center;
  }
}
