/* style/faq-account-security.css */

/* Base styles */
.page-faq-account-security {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-faq-account-security__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #08160F;
}

.page-faq-account-security__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.page-faq-account-security__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability on top, not changing original colors */
}

.page-faq-account-security__hero-content {
  position: relative;
  z-index: 10;
  margin-top: -150px; /* Overlap slightly for visual flow */
  padding: 0 20px;
  max-width: 800px;
}

.page-faq-account-security__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-faq-account-security__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq-account-security__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-faq-account-security__btn-primary,
.page-faq-account-security__btn-secondary,
.page-faq-account-security__link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-faq-account-security__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-faq-account-security__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.6);
}

.page-faq-account-security__btn-secondary {
  background: none;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-faq-account-security__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #57E38D;
  border-color: #57E38D;
}

.page-faq-account-security__faq-section {
  padding: 60px 0;
  background-color: #0A1F16; /* Slightly lighter dark green */
}

.page-faq-account-security__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-faq-account-security__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-faq-account-security__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.page-faq-account-security__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green */
  border-color: #57E38D; /* Glow */
}

.page-faq-account-security__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  user-select: none;
  position: relative;
  list-style: none;
}

.page-faq-account-security__faq-question::-webkit-details-marker {
  display: none;
}

.page-faq-account-security__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-faq-account-security__faq-item[open] .page-faq-account-security__faq-toggle {
  transform: rotate(45deg);
}

.page-faq-account-security__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
  margin-top: -1px;
  padding-top: 20px;
}

.page-faq-account-security__faq-answer p {
  margin-bottom: 15px;
}

.page-faq-account-security__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-faq-account-security__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.page-faq-account-security__link-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.page-faq-account-security__link-btn:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 10px rgba(42, 209, 111, 0.5);
}

.page-faq-account-security__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #08160F;
}

.page-faq-account-security__dark-section {
  background-color: #11271B; /* Card BG */
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq-account-security__hero-content {
    margin-top: -80px;
  }

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

  .page-faq-account-security__description {
    font-size: 1em;
  }

  .page-faq-account-security__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-faq-account-security__btn-primary,
  .page-faq-account-security__btn-secondary,
  .page-faq-account-security__link-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

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

  .page-faq-account-security__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-faq-account-security__faq-answer {
    padding: 0 20px 15px 20px;
  }
  
  .page-faq-account-security img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-faq-account-security__hero-image-wrapper,
  .page-faq-account-security__faq-item,
  .page-faq-account-security__cta-section .page-faq-account-security__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-faq-account-security__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-faq-account-security__hero-content {
    padding: 0 15px;
  }

  .page-faq-account-security__faq-section {
    padding: 40px 0;
  }

  .page-faq-account-security__cta-section {
    padding: 50px 0;
  }

  .page-faq-account-security__dark-section {
    padding: 30px;
  }
}