/* style/support.css */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  min-height: 100vh;
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
  padding-top: var(--header-offset, 120px); /* Desktop padding-top */
  background: linear-gradient(135deg, #0A0A0A, #111111);
}

.page-support__hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}

.page-support__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-support__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFD36B; /* Glow color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

.page-support__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  color: #FFF6D6;
}

.page-support__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}