/* style/support.css */

/* Variables and Base Styles */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-color: #EA7C07;
  --background-light: #FFFFFF;
  --background-dark: #000000; /* From shared.css body background */
  --border-color: #e0e0e0;
  --padding-section: 60px 20px;
  --gap-grid: 20px;
}

.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Ensure consistency with body */
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Consistent padding for content */
  box-sizing: border-box;
}

.page-support__hero-section {
  position: relative;
  width: 100%;
  padding: var(--padding-section);
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  text-align: center;
  background-color: var(--primary-color); /* Brand primary color for hero */
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Ensure hero section has some height */
}

.page-support__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-light);
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background-color: var(--login-color); /* Using login color for primary action */
  color: var(--text-light);
  border: 2px solid var(--login-color);
  margin: 10px;
}

.page-support__btn-primary:hover {
  background-color: darken(var(--login-color), 10%);
  border-color: darken(var(--login-color), 10%);
}

.page-support__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin: 10px;
}

.page-support__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-support__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Section */
.page-support__why-choose-section {
  padding: var(--padding-section);
  background-color: var(--background-light);
  color: var(--text-dark); /* Dark text on light background */
}

.page-support__why-choose-section .page-support__section-title,
.page-support__why-choose-section .page-support__section-description {
  color: var(--text-dark);
}