.pricing-section {
  text-align: center;
  padding: 60px 25px 28px;
}
@media (max-width: 1024px) {
  .pricing-section {
    padding: 0 10px;
  }
}

.pricing-title {
  font-size: 2rem;
  color: #47b3ff;
  margin-bottom: 40px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .pricing-cards {
    margin-top: 30px;
  }
}

.pricing-card {
  display: flex;
  justify-content: center;
  align-items: self-start;
  flex-direction: column;
  background-color: black;
  padding: 30px;
  border-radius: 15px;
  width: 340px;
  transition: 0.3s ease;
  border: 2px solid rgb(0, 0, 0);
}
.pricing-card h3 {
  text-transform: uppercase;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 2.8rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  letter-spacing: -1px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  color: #fafbfc;
  text-align: left;
  width: 100%;
  margin-bottom: 30px;
}
.pricing-card ul li {
  margin-bottom: 10px;
}
.pricing-card ul li.disabled {
  opacity: 0.5;
}
.pricing-card li img {
  width: 18px;
  height: 18px;
  float: right;
}

.price-container {
  display: flex;
  justify-content: left;
  align-items: self-start;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
}

.price {
  font-size: 3.3rem;
  font-weight: 600;
  color: #a3dfff;
}
.price span {
  text-align: left;
  font-weight: normal;
  margin-top: 15px;
  font-size: 1rem;
  display: inline-block;
  color: #fafbfc;
}

.cta-button {
  background: linear-gradient(0deg, rgb(0, 172, 238) 0%, rgb(0, 90, 179) 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  display: inline-block;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0.1s linear;
}
.cta-button:hover {
  filter: brightness(120%);
  cursor: pointer;
}

.highlight {
  border: 2px solid white;
  box-shadow: 0 0 30px #446984;
}

.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=pricing.css.map */