.page-index-platform-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: var(--secondary-color, #FFFFFF);
}

.page-index-platform-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index-platform-features__section-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color, #017439);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-index-platform-features__section-title--white {
  color: #ffffff;
}

.page-index-platform-features__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-platform-features__text-block--white {
  color: #f0f0f0;
}

.page-index-platform-features__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Buttons */
.page-index-platform-features__btn-primary,
.page-index-platform-features__btn-secondary,
.page-index-platform-features__btn-register,
.page-index-platform-features__btn-login {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.page-index-platform-features__btn-primary {
  background: var(--primary-color, #017439);
  color: #ffffff;
}

.page-index-platform-features__btn-primary:hover {
  background: #005a2d; /* darken primary color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-platform-features__btn-secondary {
  background: #ffffff;
  color: var(--primary-color, #017439);
  border-color: var(--primary-color, #017439);
}

.page-index-platform-features__btn-secondary:hover {
  background: var(--primary-color, #017439);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Specific Register/Login Button Styles */
.page-index-platform-features__btn-register,
.page-index-platform-features__btn-login {
  background-color: #C30808; /* Red for register/login */
  color: #FFFF00; /* Yellow font for register/login */
  border-color: #C30808;
}