/* style/resources-about-23wim-app.css */
.page-resources-about-23wim-app {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Inherited from body, but ensure consistency */
}

.page-resources-about-23wim-app__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-about-23wim-app__dark-bg {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-resources-about-23wim-app__light-bg {
  background-color: #ffffff; /* Auxiliary color for light sections */
  color: #333333;
}

.page-resources-about-23wim-app__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-resources-about-23wim-app__hero-section .page-resources-about-23wim-app__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  z-index: 1;
}

.page-resources-about-23wim-app__hero-content {
  flex: 1;
  text-align: left;
}

.page-resources-about-23wim-app__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-about-23wim-app__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-about-23wim-app__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-about-23wim-app__btn-primary,
.page-resources-about-23wim-app__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-about-23wim-app__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-resources-about-23wim-app__btn-primary:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}

.page-resources-about-23wim-app__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-about-23wim-app__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

.page-resources-about-23wim-app__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-about-23wim-app__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-about-23wim-app__content-section,
.page-resources-about-23wim-app__features-section,
.page-resources-about-23wim-app__register-section,
.page-resources-about-23wim-app__strategy-section {
  padding: 60px 0;
}

.page-resources-about-23wim-app__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #017439;
}

.page-resources-about-23wim-app__section-title--white {
  color: #ffffff;
}

.page-resources-about-23wim-app__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-about-23wim-app__paragraph--white {
  color: #f0f0f0;
}

.page-resources-about-23wim-app__text-center {
  text-align: center;
}

.page-resources-about-23wim-app__video-section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-about-23wim-app__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-about-23wim-app__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-resources-about-23wim-app__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.page-resources-about-23wim-app__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-about-23wim-app__feature-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-resources-about-23wim-app__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-resources-about-23wim-app__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #017439;
}

.page-resources-about-23wim-app__feature-description {
  font-size: 1em;
  text-align: justify;
}

.page-resources-about-23wim-app__download-grid,
.page-resources-about-23wim-app__register-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-resources-about-23wim-app__download-content,
.page-resources-about-23wim-app__register-content {
  flex: 1;
}

.page-resources-about-23wim-app__download-image-wrapper,
.page-resources-about-23wim-app__register-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-about-23wim-app__download-image,
.page-resources-about-23wim-app__register-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}
}