* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

:root {
  --bg-faq-body: #ffffff;
  --bg-card: #fff;
  --bg-contact: #f7f7f7;
  --bg-sections: #eeeeee9c;
  --text-black-900: #000;
  --text-black-700: #413e3e;
  --text-arrow: #5e5959;
  --text-logo: #0F172A;
  --text-green-700: #2e7d5b;
  --border-public: #e6e6e6;
  --shadow-card: 0 20px 30px 1px rgba(0, 0, 0, 0.05);
}

body.dark-mode {
  --bg-faq-body: #121216;
  --bg-card: #29313c;
  --bg-contact: #1a1919;
  --bg-sections: rgba(58, 55, 55, 0.733);
  --text-black-900: #e8e6e6;
  --text-black-700: #7a7474;
  --text-arrow: white;
  --text-logo: #fdfdfd;
  --text-green-700: #35b57e;
  --border-public: #e1d5d526;
  --shadow-card: transparent;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-black-900) !important;
  background: var(--bg-faq-body);
}

.faq-page {
  width: 60%;
  margin: 0 auto;
  padding: 70px 20px;
}

.faq-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-logo img {
  width: fit-content;
  height: 60px;
}
.faq-logo span {
  color: var(--text-logo);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.3px;
}

/* Header */
.faq-header {
  margin-bottom: 35px;
}

.faq-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 30px 0 15px;
  color: var(--text-black-900);
}

.faq-subtitle {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-black-700);
}

/* Cards */
.faq-cards {
  display: flex;
  gap: 20px;
}

.faq-card {
  flex: 1;
  padding: 28px 20px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border: 1px solid var(--border-public);
  cursor: pointer;
  gap: 5px;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
  background: var(--bg-card);
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.faq-card-icon svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.stars {
  color: #d56f11;
}

.card {
  color: #c36565;
}

.person,
.general {
  color: #9cab9c;
}

.faq-card-title {
  font-size: 0.95rem;
  font-weight: 500;
}

.faq-sections {
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
}

.faq-section {
  margin-bottom: 70px;
}

.faq-section-title {
  margin-bottom: 24px;
  background: var(--bg-sections);
  padding: 20px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-section-title h2 {
  font-size: 1.8rem;
  font-weight: 600;
}
.faq-section-title svg {
  width: 30px;
  height: 30px;
  margin-top: 3px;
  vertical-align: middle;
}

.faq-list {
  border-top: 1px solid var(--border-public);
}

.faq-item {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border-public);
}
.faq-item .faq-question {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  padding: 12px 20px;
}
.faq-item .faq-question::before {
  position: absolute;
  content: "\f4f4";
  font-family: "Bootstrap-icons";
  left: -5px;
  font-weight: bold;
  color: var(--text-arrow);
  font-size: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.faq-item .faq-answer {
  white-space: pre-line;
  box-sizing: content-box;
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: height 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-item.open .faq-question::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-contact {
  margin: 80px 0 40px;
  padding: 40px 20px;
  background: var(--bg-contact);
}
.faq-contact .faq-contact-inner {
  width: 60%;
  text-align: center;
  margin: auto;
}
.faq-contact .faq-contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-contact .faq-contact-icon svg {
  width: 27px;
  height: 27px;
  color: var(--text-black-900);
}
.faq-contact .faq-contact-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-black-900);
}
.faq-contact .faq-contact-text {
  font-size: 0.95rem;
  color: var(--text-black-700);
  line-height: 1.6;
  margin-bottom: 22px;
}
.faq-contact .faq-contact-link {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: #111111;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.faq-contact .faq-contact-link:hover {
  background: #000;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .dropdown-p-btn {
    padding: 5px 5px;
    margin: 0 5px;
  }
  .options-p-wrapper {
    width: 170px;
    padding: 10px 10px;
  }
  .options-p-wrapper ul {
    display: block;
  }
  .options-p-wrapper li {
    width: 100%;
  }
  .faq-page {
    width: 100%;
    padding: 60px 10px;
  }
  .faq-logo {
    height: 45px;
  }
  .faq-title {
    font-size: 1.5rem;
    margin: 20px 0 15px;
  }
  .faq-subtitle {
    font-size: 1.2rem;
  }
  .faq-cards {
    flex-direction: column;
  }
  .faq-card-title {
    font-size: 1rem;
  }
  .faq-section {
    margin-bottom: 40px;
  }
  .faq-section-title h2 {
    font-size: 1.4rem;
  }
  .faq-section-title svg {
    width: 25px;
    height: 25px;
  }
  .faq-item .faq-question {
    font-size: 1rem;
    padding: 5px 20px;
  }
  .faq-item .faq-question::before {
    left: -5px;
    font-size: 1.2rem;
  }
  .faq-item .faq-answer {
    padding: 0 10px;
    overflow: hidden;
    font-size: 0.95rem;
  }
  .faq-contact {
    margin: 20px 0 40px;
    padding: 30px 10px;
  }
  .faq-contact .faq-contact-inner {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .faq-page {
    width: 90%;
  }
  .faq-contact .faq-contact-inner {
    width: 90%;
  }
}

/*# sourceMappingURL=faq.css.map */
