/* style/support.css */
/* Custom colors from provided palette */
:root {
  --page-support-primary-color: #F2C14E;
  --page-support-secondary-color: #FFD36B;
  --page-support-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --page-support-card-bg: #111111;
  --page-support-bg: #0A0A0A;
  --page-support-text-main: #FFF6D6;
  --page-support-border-color: #3A2A12;
  --page-support-glow-color: #FFD36B;
}

.page-support {
  font-family: Arial, sans-serif;
  color: var(--page-support-text-main); /* Default text color for dark background */
  background-color: var(--page-support-bg); /* Page background */
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

/* Ensure content is centered and has max-width */
.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Image above content */
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* 10px top padding as per instruction */
  background-color: var(--page-support-card-bg); /* Darker background for hero */
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}