/* style/resources-0033win-platform-advantages.css */

/* --- Base Styles --- */
.page-resources-0033win-platform-advantages {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: var(--secondary-color); /* Matches body background from shared.css */
}

.page-resources-0033win-platform-advantages__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-0033win-platform-advantages__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-resources-0033win-platform-advantages__section:last-of-type {
  border-bottom: none;
}

.page-resources-0033win-platform-advantages__section-title {
  font-size: 32px;
  color: var(--primary-color); /* Brand green for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-0033win-platform-advantages__main-title {
  font-size: 44px;
  color: #ffffff; /* White text for hero overlay */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-0033win-platform-advantages__main-description {
  font-size: 18px;
  color: #f0f0f0; /* Slightly off-white for hero description */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-0033win-platform-advantages p {
  margin-bottom: 15px;
  color: #333333;
}

.page-resources-0033win-platform-advantages ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-resources-0033win-platform-advantages__feature-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #333333;
}

.page-resources-0033win-platform-advantages__feature-list li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-resources-0033win-platform-advantages img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* --- Color Contrast Classes --- */
.page-resources-0033win-platform-advantages__dark-bg {
  background-color: var(--primary-color); /* Use brand primary color */
  color: #ffffff; /* White text for dark background */
}

.page-resources-0033win-platform-advantages__dark-bg .page-resources-0033win-platform-advantages__section-title,
.page-resources-0033win-platform-advantages__dark-bg h3 {
  color: #ffffff;
}

.page-resources-0033win-platform-advantages__dark-bg p,
.page-resources-0033win-platform-advantages__dark-bg li {
  color: #f0f0f0;
}

.page-resources-0033win-platform-advantages__light-bg {
  background-color: var(--secondary-color); /* White background */
  color: #333333; /* Dark text for light background */
}

/* --- Buttons --- */
.page-resources-0033win-platform-advantages__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-0033win-platform-advantages__btn-primary {
  background: var(--primary-color);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-resources-0033win-platform-advantages__btn-primary:hover {
  background: #005a2e; /* Slightly darker green */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}