/* style/support.css */
/* body has padding-top: var(--header-offset) from shared.css; this page should not add it again to first section */

/* General Styling for Help Center Page */
.page-support {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure 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-section {
  background-color: #111111; /* Card BG */
}

.page-support__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #F2C14E; /* Primary color */
  margin-bottom: 20px;
  line-height: 1.3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__section-description {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0A0A0A; /* Background */
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 40px;
  border-radius: 8px;
}

.page-support__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__intro-text {
  font-size: 1.15em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* For mobile */
}

.page-support__cta-buttons--center {
  margin-top: 40px;
}

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-tertiary,
.page-support__btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #333333; /* Dark text for contrast on bright gradient */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-support__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
  opacity: 0.9;
}

.page-support__btn-secondary {
  background-color: #ffffff; /* White background for contrast */
  color: #F2C14E; /* Primary color text */
  border: 2px solid #F2C14E; /* Primary color border */
}

.page-support__btn-secondary:hover {
  background-color: #F2C14E; /* Primary color */
  color: #ffffff; /* White text */
  transform: translateY(-2px);
}