/* style/support.css */

/* Variables */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #26A9E0; /* Using primary color for dark sections */
  --login-button-color: #EA7C07;
}

/* Base styles for the page content */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--background-light); /* Body background is white */
  padding-bottom: 60px; /* Add some padding at the bottom for spacing */
}

/* Fixed header offset - applied to the first content section */
.page-support__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop default, controlled by shared */
}

/* Section styles */
.page-support__section {
  padding: 60px 20px;
  text-align: center;
}

.page-support__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.2;
}

.page-support__text-block {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 17px;
  color: #555;
}