/* style/resources-f16878-bip-security-guide.css */
.page-resources-f16878-bip-security-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--neon-dark-bg-1); /* Use shared background variable */
}

.page-resources-f16878-bip-security-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-f16878-bip-security-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  color: #ffffff; /* Light text for dark background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  overflow: hidden;
}

.page-resources-f16878-bip-security-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-resources-f16878-bip-security-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: -1;
}

.page-resources-f16878-bip-security-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-resources-f16878-bip-security-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-f16878-bip-security-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* General Content Section */
.page-resources-f16878-bip-security-guide__content-area {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for main content */
  color: #333333;
}

.page-resources-f16878-bip-security-guide__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-f16878-bip-security-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-f16878-bip-security-guide__section-title {
  font-size: 2.2em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-resources-f16878-bip-security-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-f16878-bip-security-guide__bullet-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-f16878-bip-security-guide__bullet-list li {
  margin-bottom: 10px;
}

/* Feature Grid */
.page-resources-f16878-bip-security-guide__feature-grid,
.page-resources-f16878-bip-security-guide__payment-methods,
.page-resources-f16878-bip-security-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-f16878-bip-security-guide__feature-item,
.page-resources-f16878-bip-security-guide__payment-item,
.page-resources-f16878-bip-security-guide__tip-item {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-resources-f16878-bip-security-guide__feature-item:hover,
.page-resources-f16878-bip-security-guide__payment-item:hover,
.page-resources-f16878-bip-security-guide__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-f16878-bip-security-guide__feature-image,
.page-resources-f16878-bip-security-guide__payment-icon {
  width: 100%;
  max-width: 250px; /* Adjust as needed */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-f16878-bip-security-guide__feature-title,
.page-resources-f16878-bip-security-guide__payment-title,
.page-resources-f16878-bip-security-guide__tip-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-resources-f16878-bip-security-guide__feature-description,
.page-resources-f16878-bip-security-guide__payment-description,
.page-resources-f16878-bip-security-guide__tip-description {
  font-size: 1em;
  color: #555555;
}

/* CTA Buttons */
.page-resources-f16878-bip-security-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-f16878-bip-security-guide__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-resources-f16878-bip-security-guide__btn-primary:hover {
  background-color: #005a2d;
  transform: translateY(-2px);
}

.page-resources-f16878-bip-security-guide__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-f16878-bip-security-guide__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-resources-f16878-bip-security-guide__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* FAQ Section */
.page-resources-f16878-bip-security-guide__faq-section {
  padding: 60px 0;
  background-color: #017439; /* Dark background for FAQ */
  color: #ffffff;
}

.page-resources-f16878-bip-security-guide__faq-list {
  margin-top: 40px;
}

.page-resources-f16878-bip-security-guide__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-f16878-bip-security-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  list-style: none; /* For details/summary */
}

.page-resources-f16878-bip-security-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-f16878-bip-security-guide__faq-qtext {
  flex-grow: 1;
}

.page-resources-f16878-bip-security-guide__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-resources-f16878-bip-security-guide__faq-item[open] .page-resources-f16878-bip-security-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-f16878-bip-security-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-f16878-bip-security-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-f16878-bip-security-guide__hero-description {
    font-size: 1.1em;
  }
  .page-resources-f16878-bip-security-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-f16878-bip-security-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-f16878-bip-security-guide__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-f16878-bip-security-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-f16878-bip-security-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-f16878-bip-security-guide__content-area,
  .page-resources-f16878-bip-security-guide__faq-section {
    padding: 40px 0;
  }

  .page-resources-f16878-bip-security-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-f16878-bip-security-guide__feature-grid,
  .page-resources-f16878-bip-security-guide__payment-methods,
  .page-resources-f16878-bip-security-guide__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}