:root {
  --primary-color: #0A2342;
  --secondary-color: #F2A900;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #0A2342;
}

.page-resources-fabet-security-reputation {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: #ffffff; /* Default body background is white */
}

.page-resources-fabet-security-reputation__hero-section {
  position: relative;
  padding: 180px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5e 100%);
  color: var(--text-light);
  overflow: hidden;
}

/* Fixed Navbar Padding */
.page-resources-fabet-security-reputation__hero-section {
  padding-top: 120px; /* Adjust based on actual fixed header height */
}

.page-resources-fabet-security-reputation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-fabet-security-reputation__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-resources-fabet-security-reputation__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-fabet-security-reputation__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-fabet-security-reputation__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-fabet-security-reputation__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-fabet-security-reputation__btn-primary:hover {
  background: #e09a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-fabet-security-reputation__btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-resources-fabet-security-reputation__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-fabet-security-reputation__section {
  padding: 80px 0;
  position: relative;
}

.page-resources-fabet-security-reputation__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.page-resources-fabet-security-reputation__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-fabet-security-reputation__grid-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-fabet-security-reputation__grid-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-resources-fabet-security-reputation__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-fabet-security-reputation__grid-item p {
  font-size: 1em;
  color: var(--text-dark);
}

.page-resources-fabet-security-reputation__image {
  max-width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-fabet-security-reputation__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-fabet-security-reputation__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
}

.page-resources-fabet-security-reputation__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-fabet-security-reputation__card-image {
  width: 100%;
  height: 280px; /* Ensure images are large and consistent */
  object-fit: cover;
  display: block;
}

.page-resources-fabet-security-reputation__card-title {
  font-size: 1.6em;
  font-weight: 600;
  padding: 20px 20px 0;
  color: var(--primary-color);
}

.page-resources-fabet-security-reputation__card p {
  padding: 15px 20px;
  flex-grow: 1;
  color: var(--text-dark);
}

.page-resources-fabet-security-reputation__btn-link {
  display: inline-block;
  padding: 12px 20px;
  margin: 0 20px 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-fabet-security-reputation__btn-link:hover {
  background: #e09a00;
}

.page-resources-fabet-security-reputation__list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-resources-fabet-security-reputation__list li {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--text-dark);
}

.page-resources-fabet-security-reputation__list li strong {
  color: var(--primary-color);
}

/* Color Contrast Guarantee */
.page-resources-fabet-security-reputation__dark-bg {
  background: var(--background-dark);
  color: var(--text-light);
}

.page-resources-fabet-security-reputation__dark-bg .page-resources-fabet-security-reputation__section-title,
.page-resources-fabet-security-reputation__dark-bg .page-resources-fabet-security-reputation__sub-title,
.page-resources-fabet-security-reputation__dark-bg .page-resources-fabet-security-reputation__card-title {
  color: var(--text-light);
}

.page-resources-fabet-security-reputation__dark-bg .page-resources-fabet-security-reputation__grid-item p {
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-fabet-security-reputation__dark-card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-fabet-security-reputation__dark-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-fabet-security-reputation__light-bg {
  background: var(--background-light);
  color: var(--text-dark);
}

.page-resources-fabet-security-reputation__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* FAQ Section */
.page-resources-fabet-security-reputation__faq-section {
  padding: 80px 0;
  background: var(--primary-color);
  color: var(--text-light);
}

.page-resources-fabet-security-reputation__faq-section .page-resources-fabet-security-reputation__section-title {
  color: var(--text-light);
}

.page-resources-fabet-security-reputation__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-fabet-security-reputation__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-fabet-security-reputation__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  color: var(--primary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-fabet-security-reputation__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-fabet-security-reputation__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-resources-fabet-security-reputation__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-fabet-security-reputation__faq-item.active .page-resources-fabet-security-reputation__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-resources-fabet-security-reputation__faq-item.active .page-resources-fabet-security-reputation__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(180deg);
}

.page-resources-fabet-security-reputation__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: var(--background-light);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: var(--text-dark);
}

.page-resources-fabet-security-reputation__faq-item.active .page-resources-fabet-security-reputation__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border: 1px solid #e0e0e0;
  border-top: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-fabet-security-reputation__main-title {
    font-size: 2.8em;
  }

  .page-resources-fabet-security-reputation__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-fabet-security-reputation__hero-section {
    padding-top: 100px !important; /* Mobile fixed header padding */
    padding-bottom: 60px;
  }

  .page-resources-fabet-security-reputation__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-fabet-security-reputation__main-title {
    font-size: 2.2em;
  }

  .page-resources-fabet-security-reputation__hero-description {
    font-size: 1em;
  }

  .page-resources-fabet-security-reputation__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-fabet-security-reputation__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-fabet-security-reputation__section {
    padding: 60px 0;
  }

  .page-resources-fabet-security-reputation__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-resources-fabet-security-reputation__sub-title {
    font-size: 1.4em;
  }

  .page-resources-fabet-security-reputation__grid-columns {
    grid-template-columns: 1fr;
  }

  .page-resources-fabet-security-reputation__grid-item {
    padding: 25px;
  }

  .page-resources-fabet-security-reputation__image,
  .page-resources-fabet-security-reputation__card-image {
    height: 200px; /* Adjust height for mobile */
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-fabet-security-reputation__info-cards {
    grid-template-columns: 1fr;
  }

  .page-resources-fabet-security-reputation__card-title {
    font-size: 1.4em;
  }

  .page-resources-fabet-security-reputation__card p {
    font-size: 0.95em;
  }

  .page-resources-fabet-security-reputation__btn-link {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    box-sizing: border-box;
  }

  .page-resources-fabet-security-reputation__list li {
    font-size: 1em;
    padding: 15px;
  }

  .page-resources-fabet-security-reputation__faq-question {
    padding: 15px 20px;
  }

  .page-resources-fabet-security-reputation__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-fabet-security-reputation__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-resources-fabet-security-reputation__faq-answer {
    padding: 0 20px;
  }

  .page-resources-fabet-security-reputation__faq-item.active .page-resources-fabet-security-reputation__faq-answer {
    padding: 15px 20px !important;
  }
}

/* Ensure all images are responsive */
.page-resources-fabet-security-reputation img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Contrast fixes for specific elements */
.page-resources-fabet-security-reputation p,
.page-resources-fabet-security-reputation li {
  color: var(--text-dark);
}

.page-resources-fabet-security-reputation__dark-bg p,
.page-resources-fabet-security-reputation__dark-bg li {
  color: var(--text-light);
}

.page-resources-fabet-security-reputation__dark-bg .page-resources-fabet-security-reputation__list li {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--secondary-color);
}

.page-resources-fabet-security-reputation__dark-bg .page-resources-fabet-security-reputation__list li strong {
  color: var(--secondary-color);
}