/* style/resources-88clb-new-platform-advantages.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-login-btn-bg: #C30808;
  --register-login-btn-text: #FFFF00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #017439;
}

.page-resources-88clb-new-platform-advantages {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--background-light);
}

.page-resources-88clb-new-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); /* Fixed header offset */
  background-color: var(--background-dark);
  color: var(--text-light);
  overflow: hidden;
}

.page-resources-88clb-new-platform-advantages__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-88clb-new-platform-advantages__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-resources-88clb-new-platform-advantages__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-88clb-new-platform-advantages__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-88clb-new-platform-advantages__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-88clb-new-platform-advantages__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-resources-88clb-new-platform-advantages__content-section {
  padding: 60px 20px;
}

.page-resources-88clb-new-platform-advantages__dark-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-88clb-new-platform-advantages__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-88clb-new-platform-advantages__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-resources-88clb-new-platform-advantages__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: inherit;
}

.page-resources-88clb-new-platform-advantages__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px 0;
  background-color: #000;
}

.page-resources-88clb-new-platform-advantages__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-resources-88clb-new-platform-advantages__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-88clb-new-platform-advantages__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-resources-88clb-new-platform-advantages__image-left,
.page-resources-88clb-new-platform-advantages__image-right {
  flex: 1;
  min-width: 200px; /* Ensure min size */
  max-width: 600px; /* Limit width */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-88clb-new-platform-advantages__text-content {
  flex: 2;
}

.page-resources-88clb-new-platform-advantages__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-88clb-new-platform-advantages__card {
  background-color: var(--background-light);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-88clb-new-platform-advantages__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-88clb-new-platform-advantages__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px;
}

.page-resources-88clb-new-platform-advantages__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}