/* style/support.css */

/* Base Styles for the Support Page */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light background */
  background-color: #f0f2f5; /* Body background color */
}

/* Fixed Header Offset */
.page-support__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Container for content sections */
.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section Styling */
.page-support__dark-section {
  background-color: #017439; /* Brand primary color */
  color: #ffffff; /* White text on dark background */
  padding: 60px 0;
}

.page-support__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text */
  padding: 60px 0;
}

.page-support__main-title,
.page-support__section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: bold;
}

.page-support__main-title {
  color: #ffffff;
}

.page-support__section-title {
  color: #017439;
}

.page-support__dark-section .page-support__section-title {
  color: #ffffff;
}

.page-support__intro-description,
.page-support__text-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

/* Hero Section */
.page-support__hero-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  max-width: 1000px; /* Example size, ensure it's >= 200px */
  margin: 40px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Ensure responsiveness for multiple buttons */
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-support__btn-primary {
  background-color: #C30808; /* Custom color for primary action buttons */
  color: #FFFF00; /* Custom font color for primary action buttons */
  border: 2px solid #C30808;
}

.page-support__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-support__btn-secondary {
  background-color: #ffffff;
  color: #017439; /* Brand primary color */
  border: 2px solid #017439;
}

.page-support__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #017439;
  border-color: #017439;
}

/* Features Grid */
.page-support__features-grid,
.page-support__channels-grid,
.page-support__guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}