/* style/faq-account-security-privacy.css */
.page-faq-account-security-privacy {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-faq-account-security-privacy__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-faq-account-security-privacy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffc107; /* Highlight with auxiliary color */
  font-weight: bold;
}

.page-faq-account-security-privacy__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq-account-security-privacy__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-faq-account-security-privacy__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-faq-account-security-privacy__btn--primary {
  background-color: #ffc107;
  color: #000000; /* Ensure high contrast */
  border: 2px solid #ffc107;
}

.page-faq-account-security-privacy__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
}

.page-faq-account-security-privacy__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-faq-account-security-privacy__btn--secondary:hover {
  background-color: #ffffff;
  color: #007bff;
  transform: translateY(-3px);
}

.page-faq-account-security-privacy__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-faq-account-security-privacy__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-faq-account-security-privacy__subsection-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-faq-account-security-privacy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-faq-account-security-privacy__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-faq-account-security-privacy__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-faq-account-security-privacy__feature-item:hover {
  transform: translateY(-10px);
}

.page-faq-account-security-privacy__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.3)); /* Add shadow to icons */
}

.page-faq-account-security-privacy__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-faq-account-security-privacy__feature-description {
  color: #666;
}

.page-faq-account-security-privacy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-faq-account-security-privacy__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-faq-account-security-privacy__faq-accordion {
  margin-top: 40px;
}

.page-faq-account-security-privacy__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-faq-account-security-privacy__faq-question {
  padding: 20px;
  font-size: 1.2em;
  color: #007bff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eaf5ff; /* Light blue background for questions */
  border-bottom: 1px solid #d0e7ff;
  transition: background-color 0.3s ease;
}

.page-faq-account-security-privacy__faq-question:hover {
  background-color: #d0e7ff;
}

.page-faq-account-security-privacy__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #ffc107;
}

.page-faq-account-security-privacy__faq-question.active::after {
  content: '-';
}

.page-faq-account-security-privacy__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #ffffff;
}

.page-faq-account-security-privacy__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
}

.page-faq-account-security-privacy__faq-answer p {
  margin-bottom: 0;
  color: #666;
}

.page-faq-account-security-privacy__call-to-action {
  text-align: center;
  background-color: #007bff;
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.page-faq-account-security-privacy__call-to-action .page-faq-account-security-privacy__section-title {
  color: #ffc107;
  margin-bottom: 20px;
}

.page-faq-account-security-privacy__call-to-action .page-faq-account-security-privacy__paragraph {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-faq-account-security-privacy__call-to-action .page-faq-account-security-privacy__btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq-account-security-privacy__hero-title {
    font-size: 2.5em;
  }

  .page-faq-account-security-privacy__hero-subtitle {
    font-size: 1.1em;
  }

  .page-faq-account-security-privacy__hero-cta {
    flex-direction: column;
  }

  .page-faq-account-security-privacy__btn {
    width: 80%;
    margin: 10px auto;
  }

  .page-faq-account-security-privacy__section-title {
    font-size: 2em;
  }

  .page-faq-account-security-privacy__subsection-title {
    font-size: 1.5em;
  }

  .page-faq-account-security-privacy__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-faq-account-security-privacy__call-to-action {
    padding: 40px 20px;
  }

  .page-faq-account-security-privacy__call-to-action .page-faq-account-security-privacy__btn {
    display: block;
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .page-faq-account-security-privacy__hero-title {
    font-size: 2em;
  }

  .page-faq-account-security-privacy__hero-subtitle {
    font-size: 1em;
  }

  .page-faq-account-security-privacy__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-faq-account-security-privacy__section-title {
    font-size: 1.8em;
  }

  .page-faq-account-security-privacy__subsection-title {
    font-size: 1.3em;
  }

  .page-faq-account-security-privacy__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-faq-account-security-privacy__faq-answer {
    padding: 15px;
  }
}