/* style/support.css */

/* Base styles for the page-support scope */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #f5f5f5; /* Light background for the main content area */
}

/* Fixed header spacing - assuming shared.css handles body padding-top */
.page-support__hero-section {
  position: relative;
  padding-top: 0; /* shared.css should handle body padding-top */
  padding-bottom: 60px; /* Add some space below hero content */
  background: linear-gradient(135deg, #FFD700, #000000); /* Gold to Black gradient */
  color: #ffffff; /* White text for dark/gradient background */
}

.page-support__hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
}

.page-support__hero-content {
  flex: 1;
  text-align: left;
}

.page-support__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff; /* White text for contrast */
}

.page-support__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for description */
}

.page-support__hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: cover;
}

/* Section common styles */
.page-support__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #000000; /* Dark text for light sections */
}

.page-support__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

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

/* Dark section specific styles */
.page-support__dark-section {
  background-color: #000000; /* Auxiliary color as background */
  color: #ffffff; /* White text for dark background */
}

.page-support__dark-section .page-support__section-title {
  color: #FFD700; /* Gold title for dark section */
}

.page-support__dark-section .page-support__section-description {
  color: #f0f0f0; /* Light text for dark section description */
}

/* Light background section */
.page-support__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text */
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  max-width: 100%; /* For responsive buttons */
  box-sizing: border-box; /* For responsive buttons */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-support__btn-primary {
  background-color: #FFD700; /* Gold background */
  color: #000000; /* Black text for contrast */
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.page-support__btn-primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.page-support__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700; /* Gold border */
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.page-support__btn-secondary:hover {
  background-color: #FFD700; /* Gold background on hover */
  color: #000000; /* Black text on hover */
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.page-support__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Contact Methods Section */
.page-support__contact-methods-section {
  padding-bottom: 60px;
}

.page-support__contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}