.page-resources-188bey-platform-advantages {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body background handled by shared.css var(--dark-bg) */
}

.page-resources-188bey-platform-advantages__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-188bey-platform-advantages__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-188bey-platform-advantages__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: 2;
}

.page-resources-188bey-platform-advantages__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-resources-188bey-platform-advantages__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-188bey-platform-advantages__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-188bey-platform-advantages__section {
  padding: 60px 20px;
  background-color: rgba(13, 13, 13, 0.9); /* Slightly lighter dark background for sections */
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-resources-188bey-platform-advantages__section:nth-child(even) {
  background-color: rgba(20, 20, 20, 0.95);
}

.page-resources-188bey-platform-advantages__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-188bey-platform-advantages__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-188bey-platform-advantages__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000;
  border-radius: 2px;
}

.page-resources-188bey-platform-advantages__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: justify;
}

.page-resources-188bey-platform-advantages__text-block strong {
  color: #FFD700;
}

.page-resources-188bey-platform-advantages__image-wrapper {
  margin: 40px auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-188bey-platform-advantages__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-resources-188bey-platform-advantages__cta-container {
  text-align: center;
  margin-top: 40px;
}

.page-resources-188bey-platform-advantages__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-188bey-platform-advantages__btn-primary {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #000000; /* Black text for gold button */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-188bey-platform-advantages__btn-primary:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.page-resources-188bey-platform-advantages__btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-resources-188bey-platform-advantages__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.page-resources-188bey-platform-advantages__inline-link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-188bey-platform-advantages__inline-link:hover {
  color: #FFA500;
  text-decoration: none;
}

/* FAQ Section Styling */
.page-resources-188bey-platform-advantages__faq-section {
  background-color: rgba(20, 20, 20, 0.95);
}

.page-resources-188bey-platform-advantages__faq-list {
  margin-top: 30px;
}

.page-resources-188bey-platform-advantages__faq-item {
  background-color: rgba(30, 30, 30, 0.9);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-resources-188bey-platform-advantages__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #8B0000; /* Dark red for question header */
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-188bey-platform-advantages__faq-question:hover {
  background-color: #A50000;
}

.page-resources-188bey-platform-advantages__faq-question h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.1em;
}

.page-resources-188bey-platform-advantages__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-188bey-platform-advantages__faq-item.active .page-resources-188bey-platform-advantages__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-resources-188bey-platform-advantages__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: rgba(40, 40, 40, 0.9);
  color: #e0e0e0;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-188bey-platform-advantages__faq-item.active .page-resources-188bey-platform-advantages__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 20px 25px;
}

.page-resources-188bey-platform-advantages__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-188bey-platform-advantages__hero-title {
    font-size: 3em;
  }
  .page-resources-188bey-platform-advantages__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-188bey-platform-advantages__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-188bey-platform-advantages__hero-title {
    font-size: 2.5em;
  }
  .page-resources-188bey-platform-advantages__hero-description {
    font-size: 1em;
  }
  .page-resources-188bey-platform-advantages__section {
    padding: 40px 10px;
  }
  .page-resources-188bey-platform-advantages__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-188bey-platform-advantages__text-block {
    font-size: 0.95em;
  }
  .page-resources-188bey-platform-advantages__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px;
  }
  .page-resources-188bey-platform-advantages__cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .page-resources-188bey-platform-advantages img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-188bey-platform-advantages__image-wrapper,
  .page-resources-188bey-platform-advantages__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-188bey-platform-advantages__faq-question {
    padding: 15px 20px;
  }
  .page-resources-188bey-platform-advantages__faq-question h3 {
    font-size: 1em;
  }
  .page-resources-188bey-platform-advantages__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-188bey-platform-advantages__hero-title {
    font-size: 2em;
  }
  .page-resources-188bey-platform-advantages__hero-description {
    font-size: 0.9em;
  }
  .page-resources-188bey-platform-advantages__section-title {
    font-size: 1.5em;
  }
}