.answer-text {
  display: none;
}

.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: rgba(0, 100, 148, 0.24);
  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: rgba(0, 101, 148, 0.452);
  max-height: 2000px !important;
  transition: 0.3s all;
}
.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: #1e293b;
}
.question1.open .icon {
  background-color: #C2DAE5;
  transition: 0.4s all;
  transform: rotate(180deg);
}
.header-in-question .icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-top: 2px;
  background-color: #619FBD;
  border-radius: 50%;
}
.answer-text {
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
  margin: 0;
  margin-top: 10px;
}
.span1 {
  margin-top: 84px;
  display: block;
  font-size: 25px;
  margin-bottom: 20px;
  color: #1e293b;
  font-weight: 800;
}
.span2 {
  background-color: #f1f5f9;
  min-width: 125px;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
  font-size: 16px;
  color: #1e293b;
}
.span2 .span2-text {
  text-decoration: none;
  color: inherit;
}


.features-intro.modern-text {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease-in-out;
}

.features-intro.modern-text h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.6;
  color: black;
  letter-spacing: -0.25px;
}

.features-intro.modern-text .highlight {
  background: linear-gradient(90deg, #4dabf7, #1c92f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.extraLight {
  border-bottom: 2px solid #5f5f5f;
}
.partners-intro h1 {
  color: var(--text-secondary) !important;
}

@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%;
}