:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-support {
  font-family: Arial, sans-serif;
  color: var(--color-text-main); /* Main text color for dark background */
  background-color: var(--color-background); /* Overall page background */
}

/* HERO Section */
.page-support__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--color-background);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-support__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default for desktop */
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.page-support__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-gold); /* Using gold for main title */
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-support__description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--color-text-secondary);
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  background: var(--color-button-gradient);
  color: var(--color-text-main); /* White text on green gradient */
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 20px var(--color-glow);
}

/* General Section Styling */
.page-support__section {
  padding: 80px 0;
  background-color: var(--color-background);
}

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

.page-support__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-gold);
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-support__section-title--white {
  color: var(--color-text-main);
  text-shadow: none;
}

.page-support__description-white {
  color: var(--color-text-main);
}

.page-support p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1em;
  color: var(--color-text-secondary);
}

.page-support p strong {
  color: var(--color-text-main);
}

/* Introduction Section */
.page-support__introduction p {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Channels Section */
.page-support__channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__channel-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(17, 168, 78, 0.5);
}

.page-support__channel-card img {
  width: 100%; /* Ensure images take full width of card */
  max-width: 300px; /* Max width for images within cards */
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}