/* style/support.css */

/* Custom Variables */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-register-bg: #C30808; /* Custom color for register/login buttons */
  --button-register-text: #FFFF00; /* Custom font color for register/login */
  --body-bg: #FFFFFF; /* Default body background is white */
}

/* Base Styles for the page-support scope */
.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--body-bg);
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

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

.page-support__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* Color Contrast Specifics */
.page-support__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-support__dark-bg .page-support__section-title,
.page-support__dark-bg .page-support__section-description,
.page-support__dark-bg .page-support__card-title,
.page-support__dark-bg p {
  color: var(--text-light);
}

.page-support__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

/* HERO Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px; /* Adjusted padding for hero */
  /* padding-top is already handled by .page-support */
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px; /* Space between content and image */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-support__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: var(--text-light); /* Because hero section is dark-bg */
}