.content {
  max-width: 1065px;
  width: 100%;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  margin-top: 160px;
}
.content h1 {
  font-size: 40px;
  margin-bottom: 50px;
}
.questions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}

.question1 .icon {
  cursor: pointer;
  transition: 0.4s all;
  transform: rotate(0deg);
}

.question1 {
  background-color: #173750;
  border-radius: 15px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 12px;
  min-height: 80px;
  transition: 0.3s all;
  overflow: hidden;
  max-height: 80px;
  box-sizing: border-box;
}
.question1.open {
  background-color: #006494;
  max-height: 2000px !important;
  transition: 0.3s all;
}



.question1.open .icon {
  background-color: #243552;
  transition: 0.4s all;
  transform: rotate(180deg);
}




.header-in-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.header-in-question span {
  font-size: 22px;
  font-weight: 600;
  flex: 1;
  color: white;
}
.header-in-question .icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-top: 2px;
  background-color: #57ffe3;
  border-radius: 50%;
}
.answer-text {
  font-size: 18px;
  line-height: 1.6;
  color: #dbeafe;
  margin: 0;
  margin-top: 10px;
}
.span1 {
  margin-top: 84px;
  display: block;
  color: white;
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 800;
}
.span2 {
  background-color: #717a8a;
  min-width: 125px;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
  font-size: 16px;
}
.span2 .span2-text {
  text-decoration: none;
  color: inherit;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 1024px) {
  .header-main {
    position: relative;
  }
}
.footer {
  border-top: 1px solid var(--bg-footer);
}
.btn-email {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 5%;
}