* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #e6e6fa, #87cefa, #00bfff);
}
section {
  min-height: 100vh;
}
.faq-title {
  font-size: 3.2rem;
  display: flex;
  justify-content: center;
  color: rgb(26, 35, 126);
  padding-top: 6.4rem;
}
.faq-welcome {
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 1.6rem;
  line-height: 1.6;
}
.icon {
  width: 2.4rem;
  height: 2.4rem;
  stroke: #000;
}
.faq-content {
  max-width: 90%;
  margin: 2.4rem auto;
  box-shadow: 0 0 3.2rem rgba(0, 0, 0, 0.1);
  padding: 2.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: center;
  background-color: rgba(52, 152, 219, 0.514);
  border-radius: 2.4rem;
  transition: background-color 0.3s ease-in-out;
}
.faq-content:hover {
  background-color: rgba(52, 152, 219, 0.8);
  cursor: pointer;
}

.faq-question {
  font-weight: 700;
  font-size: 2rem;
  color: #000;
}
.faq-answer {
  padding: 1rem 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 100;
}
.hidden-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.copyright {
  font-size: 1.4rem;
  color: #d3d3d3;
  margin-top: auto;
  padding-bottom: 2rem;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 3.2rem;
    max-width: 30rem; /* Adjust width to control wrapping */
    text-align: center;
    margin: 0 auto; /* Center the text */
    line-height: 1;
  }
  .faq-welcome {
    font-size: 1.8rem;
  }

  .faq-container {
    width: 95%;
    margin: 2rem auto;
  }
  .faq-content {
    padding: 1.6rem;
    border-radius: 2rem;
  }
  .faq-question {
    font-size: 1.8rem;
  }
  .faq-answer {
    font-size: 1.4rem;
  }
  .icon {
    width: 2rem;
    height: 2rem;
  }
}
