/* style/resources-shbett-platform-advantages.css */
.page-resources-shbett-platform-advantages {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

.page-resources-shbett-platform-advantages__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
  background-color: #017439; /* Use primary brand color for hero background */
  color: #ffffff;
  overflow: hidden; /* For image overflow */
}

.page-resources-shbett-platform-advantages__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-shbett-platform-advantages__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color for title */
  line-height: 1.2;
}

.page-resources-shbett-platform-advantages__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-resources-shbett-platform-advantages__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-shbett-platform-advantages__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2; /* Subtle background image */
  overflow: hidden;
}

.page-resources-shbett-platform-advantages__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-shbett-platform-advantages__section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1); /* Consistent with body */
  color: #f0f0f0;
}

.page-resources-shbett-platform-advantages__introduction {
  background-color: var(--dark-bg-1);
}

.page-resources-shbett-platform-advantages__core-advantages {
  background-color: #017439; /* Darker section with brand color */
  color: #ffffff;
}

.page-resources-shbett-platform-advantages__why-choose {
  background-color: var(--dark-bg-1);
  color: #f0f0f0;
}

.page-resources-shbett-platform-advantages__faq {
  background-color: var(--dark-bg-1);
  color: #f0f0f0;
}

.page-resources-shbett-platform-advantages__cta-banner {
  background-color: #017439; /* Brand color for CTA banner */
  color: #ffffff;
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.page-resources-shbett-platform-advantages__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
  display: block;
}

.page-resources-shbett-platform-advantages__cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-shbett-platform-advantages__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color for titles */
}

.page-resources-shbett-platform-advantages__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-resources-shbett-platform-advantages__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-resources-shbett-platform-advantages__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFFF00; /* Register/Login font color for titles */
}

.page-resources-shbett-platform-advantages__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-shbett-platform-advantages__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-shbett-platform-advantages__advantage-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards on dark brand background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-resources-shbett-platform-advantages__advantage-card:hover {
  transform: translateY(-10px);
}

.page-resources-shbett-platform-advantages__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-resources-shbett-platform-advantages__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFFF00; /* Register/Login font color for card titles */
}

.page-resources-shbett-platform-advantages__card-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-resources-shbett-platform-advantages__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-resources-shbett-platform-advantages__list-item {
  background-color: rgba(255, 255, 255, 0.05); /* Lighter background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #f0f0f0;
}

.page-resources-shbett-platform-advantages__list-item strong {
  color: #FFFF00; /* Register/Login font color for strong text */
  margin-right: 10px;
}

/* Buttons */
.page-resources-shbett-platform-advantages__btn-primary,
.page-resources-shbett-platform-advantages__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-shbett-platform-advantages__btn-primary {
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-shbett-platform-advantages__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
  color: #ffffff;
}

.page-resources-shbett-platform-advantages__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-shbett-platform-advantages__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
  border-color: #ffffff;
}

/* FAQ Section */
.page-resources-shbett-platform-advantages__faq-list {
  margin-top: 30px;
}

.page-resources-shbett-platform-advantages__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for FAQ items */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-shbett-platform-advantages__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  color: #FFFF00; /* Register/Login font color for FAQ questions */
}

.page-resources-shbett-platform-advantages__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-shbett-platform-advantages__faq-item summary::marker {
  display: none;
}