/* style/support.css */
:root {
  --primary-color: #017439; /* Dark Green */
  --secondary-color: #FFFFFF; /* White */
  --accent-color: #C30808; /* Red for Register/Login */
  --text-color-light: #FFFF00; /* Yellow for Register/Login font */
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
  --bg-light: #f9f9f9;
}

/* Base styles for the support page content */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  padding-bottom: 60px; /* Space above footer */
}

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

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

.page-support__dark-bg {
  background: var(--primary-color);
  color: var(--text-light);
}

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

.page-support__dark-section {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-support__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section */
}

.page-support__section-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: inherit; /* Inherit color from parent section */
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  /* padding-top: var(--header-offset, 120px); - Handled by shared.css body padding */
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #000000 100%); /* Darker gradient for hero */
  color: var(--text-light);
}

.page-support__hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}