/* Base styles for the page-support scope */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text on light body background */
  background-color: #f8f8f8; /* Light background for sections */
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-support__section-spacing {
  padding: 60px 0;
}

.page-support__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__section-description {
  font-size: 18px;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Dark section specific styles for contrast */
.page-support__dark-section {
  background-color: #26A9E0; /* Brand primary color as background */
  color: #ffffff; /* White text for contrast */
}

.page-support__section-title--light {
  color: #ffffff; /* White title on dark background */
}

.page-support__section-description--light {
  color: #f0f0f0; /* Light grey text on dark background */
}