/* style/faq-account-security.css */
.page-faq-account-security {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1E33; /* A slightly lighter dark blue for overall page background */
  line-height: 1.6;
}

.page-faq-account-security__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-faq-account-security__hero {
  background: linear-gradient(135deg, #1A2E47, #0F1E33);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-faq-account-security__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,security,network,b29_club]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-faq-account-security__hero > * {
  position: relative;
  z-index: 1;
}

.page-faq-account-security__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-account-security__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-faq-account-security__button {
  display: inline-block;
  background-color: #FFD700; /* Gold for primary button */
  color: #1A2E47; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq-account-security__button:hover {
  background-color: #E0B800; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-faq-account-security__button--secondary {
  background-color: #1A2E47; /* Dark blue for secondary button */
  color: #FFD700; /* Gold text on dark blue button */
  border: 2px solid #FFD700;
}

.page-faq-account-security__button--secondary:hover {
  background-color: #0F1E33; /* Even darker blue on hover */
  border-color: #E0B800;
}

.page-faq-account-security__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq-account-security__section:last-of-type {
  border-bottom: none;
}

.page-faq-account-security__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-faq-account-security__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-faq-account-security__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #B0B0B0;
}

.page-faq-account-security__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-faq-account-security__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-faq-account-security__importance .page-faq-account-security__text-content {
    order: 1;
  }
  .page-faq-account-security__importance .page-faq-account-security__image-wrapper {
    order: 2;
  }
}

.page-faq-account-security__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-faq-account-security__image-wrapper {
  text-align: center;
}

.page-faq-account-security__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-faq-account-security__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-faq-account-security__card {
  background-color: #1A2E47; /* Main dark blue for cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-faq-account-security__card:hover {
  transform: translateY(-8px);
  background-color: #2A405C; /* Slightly lighter dark blue on hover */
}

.page-faq-account-security__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6)); /* Gold glow for icons */
}

.page-faq-account-security__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-faq-account-security__card p {
  color: #B0B0B0;
  font-size: 0.95em;
}

.page-faq-account-security__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-faq-account-security__list li {
  background-color: #1A2E47;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700; /* Gold accent on list items */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  transition: background-color 0.3s ease;
}

.page-faq-account-security__list li:hover {
  background-color: #2A405C;
}

.page-faq-account-security__list li strong {
  color: #FFD700;
}

.page-faq-account-security__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-faq-account-security__faq-item {
  background-color: #1A2E47;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-account-security__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #1A2E47;
  transition: background-color 0.3s ease;
}

.page-faq-account-security__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq-account-security__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-faq-account-security__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #E0E0E0;
}

.page-faq-account-security__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding: 20px 25px;
}

.page-faq-account-security__faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

.page-faq-account-security__cta {
  text-align: center;
  padding: 80px 0;
  background-color: #1A2E47;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-faq-account-security__cta .page-faq-account-security__section-title {
  margin-bottom: 20px;
}

.page-faq-account-security__cta .page-faq-account-security__description {
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-faq-account-security__title {
    font-size: 3em;
  }
  .page-faq-account-security__subtitle {
    font-size: 1.3em;
  }
  .page-faq-account-security__section-title {
    font-size: 2em;
  }
  .page-faq-account-security__description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-faq-account-security__hero {
    padding: 80px 0;
  }
  .page-faq-account-security__title {
    font-size: 2.5em;
  }
  .page-faq-account-security__subtitle {
    font-size: 1.1em;
  }
  .page-faq-account-security__section {
    padding: 40px 0;
  }
  .page-faq-account-security__section-title {
    font-size: 1.8em;
  }
  .page-faq-account-security__grid {
    grid-template-columns: 1fr;
  }
  .page-faq-account-security__faq-question,
  .page-faq-account-security__faq-answer {
    padding: 15px 20px;
  }
  .page-faq-account-security__faq-question::after {
    right: 20px;
  }
  .page-faq-account-security__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-faq-account-security__hero {
    padding: 60px 0;
  }
  .page-faq-account-security__title {
    font-size: 2em;
  }
  .page-faq-account-security__subtitle {
    font-size: 1em;
  }
  .page-faq-account-security__section-title {
    font-size: 1.5em;
  }
  .page-faq-account-security__description {
    font-size: 0.9em;
  }
  .page-faq-account-security__card {
    padding: 20px;
  }
  .page-faq-account-security__card-title {
    font-size: 1.3em;
  }
  .page-faq-account-security__list li {
    padding: 15px;
    font-size: 1em;
  }
  .page-faq-account-security__faq-question {
    font-size: 1.1em;
  }
  .page-faq-account-security__faq-answer p {
    font-size: 0.95em;
  }
}