/* style/resources-32win-account-security.css */

/* Base styles for the page content */
.page-resources-32win-account-security {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #0a0a0a (dark), so text must be light */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

/* Hero Section */
.page-resources-32win-account-security__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  background-color: #0a0a0a;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-resources-32win-account-security__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Darken image for text readability */
}

.page-resources-32win-account-security__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-32win-account-security__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF; /* Ensure high contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-32win-account-security__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* General Section Styles */
.page-resources-32win-account-security__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-resources-32win-account-security__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-resources-32win-account-security__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #f0f0f0; /* Light text for dark background */
}

.page-resources-32win-account-security__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast with #0a0a0a */
  color: #ffffff;
}

/* Grid Layouts */
.page-resources-32win-account-security__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-resources-32win-account-security__grid-2-col-reversed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
.page-resources-32win-account-security__grid-2-col-reversed .page-resources-32win-account-security__image-wrapper {
  order: 2;
}
.page-resources-32win-account-security__grid-2-col-reversed .page-resources-32win-account-security__text-block {
  order: 1;
}

/* Images */
.page-resources-32win-account-security__image-wrapper {
  text-align: center;
}

.page-resources-32win-account-security__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-resources-32win-account-security__btn-primary,
.page-resources-32win-account-security__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Responsive button */
  box-sizing: border-box; /* Responsive button */
  white-space: normal; /* Responsive button */
  word-wrap: break-word; /* Responsive button */
}

.page-resources-32win-account-security__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin-right: 15px;
}

.page-resources-32win-account-security__btn-primary:hover {
  background-color: #1a7fb3;
  border-color: #1a7fb3;
}

.page-resources-32win-account-security__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-32win-account-security__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-32win-account-security__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* FAQ Section */
.page-resources-32win-account-security__faq-list {
  margin-top: 40px;
}

.page-resources-32win-account-security__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly visible on dark background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-32win-account-security__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-32win-account-security__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-32win-account-security__faq-qtext {
  flex-grow: 1;
}

.page-resources-32win-account-security__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

/* For details tag, hide default marker */
.page-resources-32win-account-security__faq-item summary {
  list-style: none;
}
.page-resources-32win-account-security__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-32win-account-security__faq-item[open] .page-resources-32win-account-security__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-resources-32win-account-security__faq-answer {
  padding: 20px;
  font-size: 1.05em;
  color: #e0e0e0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.03);
}

.page-resources-32win-account-security__faq-answer p {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-resources-32win-account-security__conclusion-section {
  padding-bottom: 80px;
  padding-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-32win-account-security__hero-title {
    font-size: 2.5em;
  }
  .page-resources-32win-account-security__section-title {
    font-size: 2em;
  }
  .page-resources-32win-account-security__sub-title {
    font-size: 1.5em;
  }
  .page-resources-32win-account-security__grid-2-col,
  .page-resources-32win-account-security__grid-2-col-reversed {
    grid-template-columns: 1fr;
  }
  .page-resources-32win-account-security__grid-2-col-reversed .page-resources-32win-account-security__image-wrapper {
    order: 1; /* Reset order for mobile */
  }
  .page-resources-32win-account-security__grid-2-col-reversed .page-resources-32win-account-security__text-block {
    order: 2; /* Reset order for mobile */
  }
}

@media (max-width: 768px) {
  .page-resources-32win-account-security__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
  }

  .page-resources-32win-account-security__hero-title {
    font-size: 2em;
  }

  .page-resources-32win-account-security__hero-description {
    font-size: 1em;
  }

  .page-resources-32win-account-security__section-title {
    font-size: 1.8em;
  }

  .page-resources-32win-account-security__container {
    padding: 15px;
  }

  /* Mobile image responsiveness */
  .page-resources-32win-account-security img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-32win-account-security__image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile video responsiveness - no video in this page, but include for safety */
  .page-resources-32win-account-security video,
  .page-resources-32win-account-security__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-32win-account-security__video-section,
  .page-resources-32win-account-security__video-container,
  .page-resources-32win-account-security__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-resources-32win-account-security__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  
  .page-resources-32win-account-security__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile button responsiveness */
  .page-resources-32win-account-security__cta-button,
  .page-resources-32win-account-security__btn-primary,
  .page-resources-32win-account-security__btn-secondary,
  .page-resources-32win-account-security a[class*="button"],
  .page-resources-32win-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-resources-32win-account-security__cta-buttons,
  .page-resources-32win-account-security__button-group,
  .page-resources-32win-account-security__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}