/* style/resources-23wim-net-security-fairness-analysis.css */

.page-resources-23wim-net-security-fairness-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
}

.page-resources-23wim-net-security-fairness-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-23wim-net-security-fairness-analysis__hero-section {
  position: relative;
  padding: 100px 0 60px; /* Adjusted padding to accommodate header offset if not on body */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  padding-top: var(--header-offset, 120px);
}

.page-resources-23wim-net-security-fairness-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-resources-23wim-net-security-fairness-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-23wim-net-security-fairness-analysis__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-23wim-net-security-fairness-analysis__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Content Area */
.page-resources-23wim-net-security-fairness-analysis__content-area {
  padding: 60px 0;
}

.page-resources-23wim-net-security-fairness-analysis__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #017439; /* Brand color for titles on light background */
}

.page-resources-23wim-net-security-fairness-analysis__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #017439; /* Brand color for sub-titles on light background */
}

.page-resources-23wim-net-security-fairness-analysis__content-area p {
  margin-bottom: 15px;
  color: #333333; /* Dark text on light background */
}

.page-resources-23wim-net-security-fairness-analysis__content-area a {
  color: #017439;
  text-decoration: underline;
}

.page-resources-23wim-net-security-fairness-analysis__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.page-resources-23wim-net-security-fairness-analysis__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-23wim-net-security-fairness-analysis__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-resources-23wim-net-security-fairness-analysis__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-23wim-net-security-fairness-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-resources-23wim-net-security-fairness-analysis__btn-primary,
.page-resources-23wim-net-security-fairness-analysis__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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-23wim-net-security-fairness-analysis__btn-primary {
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-23wim-net-security-fairness-analysis__btn-primary:hover {
  background: #a80707;
  border-color: #a80707;
}

.page-resources-23wim-net-security-fairness-analysis__btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-23wim-net-security-fairness-analysis__btn-secondary:hover {
  background: #FFFFFF;
  color: #017439;
}

/* Background color handling for contrast */
.page-resources-23wim-net-security-fairness-analysis__dark-bg {
  background-color: #017439; /* Main brand color for dark sections */
  color: #ffffff;
}

.page-resources-23wim-net-security-fairness-analysis__dark-bg .page-resources-23wim-net-security-fairness-analysis__section-title,
.page-resources-23wim-net-security-fairness-analysis__dark-bg .page-resources-23wim-net-security-fairness-analysis__sub-title {
  color: #ffffff;
}

.page-resources-23wim-net-security-fairness-analysis__dark-bg p,
.page-resources-23wim-net-security-fairness-analysis__dark-bg li {
  color: #f0f0f0;
}

.page-resources-23wim-net-security-fairness-analysis__dark-bg a {
  color: #FFFF00;
}

.page-resources-23wim-net-security-fairness-analysis__light-bg {
  background-color: #FFFFFF; /* White background for light sections */
  color: #333333;
}

/* FAQ Section */
.page-resources-23wim-net-security-fairness-analysis__faq-list {
  margin-top: 40px;
}

.page-resources-23wim-net-security-fairness-analysis__faq-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-23wim-net-security-fairness-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-resources-23wim-net-security-fairness-analysis__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-23wim-net-security-fairness-analysis__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #FFFFFF;
}

.page-resources-23wim-net-security-fairness-analysis__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFFF00;
  transition: transform 0.3s ease;
}

.page-resources-23wim-net-security-fairness-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-23wim-net-security-fairness-analysis__faq-answer p {
  padding-bottom: 20px;
  margin-bottom: 0;
  color: #f0f0f0;
}

.page-resources-23wim-net-security-fairness-analysis__faq-item.active .page-resources-23wim-net-security-fairness-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px !important;
}

.page-resources-23wim-net-security-fairness-analysis__faq-item.active .page-resources-23wim-net-security-fairness-analysis__faq-toggle {
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-23wim-net-security-fairness-analysis__hero-title {
    font-size: 2.8em;
  }

  .page-resources-23wim-net-security-fairness-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-23wim-net-security-fairness-analysis__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 450px;
  }

  .page-resources-23wim-net-security-fairness-analysis__hero-title {
    font-size: 2.2em;
  }

  .page-resources-23wim-net-security-fairness-analysis__hero-description {
    font-size: 1em;
  }

  .page-resources-23wim-net-security-fairness-analysis__hero-buttons,
  .page-resources-23wim-net-security-fairness-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-23wim-net-security-fairness-analysis__btn-primary,
  .page-resources-23wim-net-security-fairness-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-23wim-net-security-fairness-analysis__content-area,
  .page-resources-23wim-net-security-fairness-analysis__cta-section {
    padding: 40px 0;
  }

  .page-resources-23wim-net-security-fairness-analysis__section-title {
    font-size: 1.8em;
  }

  .page-resources-23wim-net-security-fairness-analysis__sub-title {
    font-size: 1.5em;
  }

  .page-resources-23wim-net-security-fairness-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-resources-23wim-net-security-fairness-analysis__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-resources-23wim-net-security-fairness-analysis__faq-question h3 {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-23wim-net-security-fairness-analysis__hero-title {
    font-size: 1.8em;
  }
  .page-resources-23wim-net-security-fairness-analysis__cta-title {
    font-size: 1.8em;
  }
}