/* General Styling for page-support */
.page-support {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-color, #FFF5E1); /* Use Text Main color */
  background-color: var(--page-bg-color, #B71C1C); /* Use Background color */
  line-height: 1.6;
}

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

/* Hero Section */
.page-support__hero-section {
  display: flex;
  flex-direction: column; /* Enforce top-image, bottom-text */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #7A0E0E; /* Deep Red for hero background */
  position: relative;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default cover for desktop */
  aspect-ratio: 16/9; /* Maintain aspect ratio */
}

.page-support__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
  color: #FFF5E1; /* Text Main */
}

.page-support__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Use clamp for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F4D34D; /* Gold */
  letter-spacing: 1px;
}

.page-support__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-support__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 15px; /* Add padding for mobile */
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Gold Gradient */
  color: #7A0E0E; /* Deep Red for text on gold */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 204, 102, 0.4); /* Glow */
}

.page-support__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 204, 102, 0.6);
}

.page-support__btn-secondary {
  background: #C91F17; /* Primary Color */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border Gold */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-support__btn-secondary:hover {
  background: #E53935; /* Secondary Color */
  border-color: #FFCC66; /* Glow */
  transform: translateY(-3px);
}

/* Sections */
.page-support__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-support__dark-section {
  background-color: #B71C1C; /* Background color */
  color: #FFF5E1; /* Text Main */
}

.page-support__light-bg {
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
}