.resource {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 80px 15px 120px;
}
.resource a {
  text-decoration: underline;
  color: #a3dfff;
}
.resource h2 {
  font-size: 2.3rem;
  font-weight: bold;
  color: white;
  line-height: 2.7rem;
  letter-spacing: 0;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
@media (max-width: 768px) {
  .resource h2 {
    font-size: 2rem;
  }
}
.resource p {
  font-size: 1.25rem;
  color: #cbd5e1;
  border-radius: 20px;
  margin-top: 10px;
  margin-right: auto;
  max-width: 700px;
}
@media screen and (max-width: 1359px) {
  .resource p {
    font-size: 1.1rem;
  }
}
.resource .button {
  display: inline-block;
  text-align: center;
  min-width: 150px;
  padding: 15px;
  outline: none;
  border: none;
  font-size: 1.2rem;
  background: rgb(0, 172, 238);
  background: linear-gradient(0deg, rgb(0, 172, 238) 0%, rgb(0, 90, 179) 100%);
  border-radius: 10px;
  color: whitesmoke;
  margin-top: 20px;
  font-weight: 600;
  transition: 0.2s linear;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.173);
  text-decoration: none;
}
.resource .button:hover {
  cursor: pointer;
  filter: brightness(130%);
}
.resource strong {
  color: #a3dfff;
}
@media screen and (max-width: 1359px) {
  .resource {
    margin-top: 20px;
    margin-bottom: 50px;
    gap: 30px;
  }
}

.warn {
  font-size: 1.3rem;
  color: rgb(255, 210, 84);
}

.page {
  max-width: 600px;
  box-shadow: 0 0 100px #446984;
  border-radius: 15px;
  height: auto;
}
@media screen and (max-width: 1359px) {
  .page {
    width: 100%;
  }
}

@media screen and (max-width: 1359px) {
  .r-one {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 1359px) {
  .r-two {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1359px) {
  .r-three {
    flex-direction: column-reverse;
    margin-top: 0;
  }
}

.faq {
  max-width: 800px;
  margin: 25px auto 100px;
}
@media (max-width: 768px) {
  .faq {
    margin-bottom: 0;
  }
}

.faq-item {
  border: 1px solid black;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .faq-item {
    border-radius: 0;
    border: none;
  }
}

.faq-question {
  background-color: #183553;
  color: white;
  padding: 25px;
  cursor: pointer;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: bold;
  transition: 0.2s linear;
}
.faq-question:hover {
  filter: brightness(130%);
}
@media (max-width: 768px) {
  .faq-question {
    font-size: 1.3rem;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2rem;
  line-height: 1.8rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #12283f;
}
.faq-answer a {
  color: #a3dfff;
  text-decoration: underline;
}

.faq-answer.faq-active {
  max-height: 400px; /* Adjust this as needed */
  padding: 30px; /* Restore padding when active */
}/*# sourceMappingURL=resources.css.map */