body {
  background-image: url('../images/background-pattern-desktop.svg');
  background-color: var(--bodyColor);
  background-repeat: no-repeat;
  background-size: 100%, 100%;
  
  font-family: var(--generalFont);
}

.faq-section {
  background-color: white;
  margin: auto;
  margin-top: 210px;
  width: 510px;
  height: 510px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 15px;
}

.faq-logo-title {
  display: flex;
  font-size: 55px;
  gap: 30px;
}

.faq-logo-title h5 {
  color: var(--faqQuestion);
}




.css-questions-and-anwsers {
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
  margin-bottom: 55px;
}

.css-questions-and-anwsers h5 {
  font-size: 16px;
  font-weight: 600;
}

.css-button-image {
  background-color: transparent;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: none;
}

.css-button-image img {
  width: 100%;
}

span {
  color: var(--faqAnswer);
  font-weight: 500;
}




@media (max-width: 603px) {

  .css-questions-and-anwsers {
    display: grid;
    grid-template-columns: 300px 40px;
    margin-top: -60px;
    margin-bottom: 55px;
  }

  .faq-section {
    margin-top: 60px;
    width: 420px;
    height: 600px;
  }

  .css-questions-and-anwsers h5 {
    font-size: 17px;
    font-weight: 600;
  }
  
  span {
    color: var(--faqAnswer);
    font-size: 15px;
    font-weight: 500;
  }
}




@media (max-width: 504px) {
  .faq-section {
    width: 380px;
    height: 560px;
    border-radius: 10px;
  }

}




@media (max-width: 458px) {
  .faq-section {
    width: 300px;
    height: 600px
  }

}


























