/* style/blog-fabet-account-security.css */

/* Custom Colors */
:root {
  --fabet-bg-dark: #08160F;
  --fabet-card-bg: #11271B;
  --fabet-text-main: #F2FFF6;
  --fabet-text-secondary: #A7D9B8;
  --fabet-border: #2E7A4E;
  --fabet-glow: #57E38D;
  --fabet-gold: #F2C14E;
  --fabet-divider: #1E3A2A;
  --fabet-deep-green: #0A4B2C;
  --fabet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --fabet-primary-color: #11A84E;
  --fabet-secondary-color: #22C768;
}

.page-blog-fabet-account-security {
  background-color: var(--fabet-bg-dark); /* Use custom background color */
  color: var(--fabet-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-fabet-account-security__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--fabet-bg-dark);
  overflow: hidden;
}

.page-blog-fabet-account-security__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Adjust as needed */
  overflow: hidden;
}

.page-blog-fabet-account-security__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-fabet-account-security__hero-content {
  width: 100%;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  z-index: 1;
  box-sizing: border-box;
}

.page-blog-fabet-account-security__main-title {
  color: var(--fabet-text-main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 100%;
}

.page-blog-fabet-account-security__hero-description {
  color: var(--fabet-text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-fabet-account-security__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--fabet-button-gradient);
  color: var(--fabet-text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-blog-fabet-account-security__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-fabet-account-security__cta-button--secondary {
  background: none;
  border: 2px solid var(--fabet-primary-color);
  color: var(--fabet-primary-color);
}

.page-blog-fabet-account-security__cta-button--secondary:hover {
  background: var(--fabet-primary-color);
  color: var(--fabet-text-main);
}

.page-blog-fabet-account-security__section {
  padding: 60px 0;
  background-color: var(--fabet-bg-dark);
}

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

.page-blog-fabet-account-security__section-title {
  color: var(--fabet-text-main);
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-fabet-account-security__content-area {
  max-width: 900px;
  margin: 0 auto;
  color: var(--fabet-text-secondary);
}

.page-blog-fabet-account-security__content-area p {
  margin-bottom: 20px;
  color: var(--fabet-text-secondary);
}

.page-blog-fabet-account-security__content-area a {
  color: var(--fabet-glow);
  text-decoration: underline;
}

.page-blog-fabet-account-security__content-area a:hover {
  color: var(--fabet-gold);
}

.page-blog-fabet-account-security__sub-title {
  color: var(--fabet-text-main);
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-fabet-account-security__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 800px;
}

.page-blog-fabet-account-security__content-area ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--fabet-text-secondary);
}

.page-blog-fabet-account-security__content-area li {
  margin-bottom: 10px;
  color: var(--fabet-text-secondary);
}

.page-blog-fabet-account-security__faq-section {
  background-color: var(--fabet-card-bg);
  padding: 60px 0;
}

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

.page-blog-fabet-account-security__faq-item {
  background-color: var(--fabet-bg-dark);
  border: 1px solid var(--fabet-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--fabet-text-main);
}

.page-blog-fabet-account-security__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background-color: var(--fabet-bg-dark);
  color: var(--fabet-text-main);
  list-style: none;
  transition: background-color 0.3s ease;
}

.page-blog-fabet-account-security__faq-question:hover {
  background-color: var(--fabet-deep-green);
}

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

.page-blog-fabet-account-security__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-blog-fabet-account-security__faq-answer {
  padding: 0 25px 18px;
  color: var(--fabet-text-secondary);
  font-size: 0.95em;
}

.page-blog-fabet-account-security__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-blog-fabet-account-security__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-fabet-account-security__main-title {
    font-size: 2.8em;
  }
  .page-blog-fabet-account-security__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-fabet-account-security__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }
  .page-blog-fabet-account-security__section-title {
    font-size: 1.8em;
  }
  .page-blog-fabet-account-security__sub-title {
    font-size: 1.5em;
  }
  .page-blog-fabet-account-security__hero-content {
    padding: 30px 15px;
  }
  .page-blog-fabet-account-security__section {
    padding: 40px 0;
  }
  .page-blog-fabet-account-security__container {
    padding: 0 15px;
  }
  .page-blog-fabet-account-security__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-fabet-account-security__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-fabet-account-security__cta-button,
  .page-blog-fabet-account-security a[class*="button"],
  .page-blog-fabet-account-security a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-fabet-account-security__cta-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-blog-fabet-account-security__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-fabet-account-security__faq-answer {
    padding: 0 20px 15px;
  }
  .page-blog-fabet-account-security__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-fabet-account-security__section,
  .page-blog-fabet-account-security__card,
  .page-blog-fabet-account-security__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-fabet-account-security__main-title {
    font-size: clamp(1.8em, 9vw, 2.2em);
  }
  .page-blog-fabet-account-security__section-title {
    font-size: 1.6em;
  }
  .page-blog-fabet-account-security__sub-title {
    font-size: 1.3em;
  }
  .page-blog-fabet-account-security__hero-description {
    font-size: 1em;
  }
}