.page-support {
  background-color: #0D0E12; /* Background */
  color: #FFF3E6; /* Text Main */
  padding-bottom: 40px; /* General padding for bottom */
}

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

.page-support__hero-section {
  padding-top: 10px; /* Small padding, body handles --header-offset */
  padding-bottom: 40px;
  text-align: center;
}

.page-support__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* H1 font size with clamp */
  font-weight: 700;
  line-height: 1.2;
  color: #FF8C1A; /* Main color for emphasis */
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #FFF3E6; /* Text Main */
}

.page-support__section {
  padding: 60px 0;
}

.page-support__section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #FF8C1A; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #FFA53A; /* Auxiliary color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-support__topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-support__topic-card {
  display: flex;
  flex-direction: column;
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #FFF3E6; /* Text Main */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #17191F; /* Initial border */
}

.page-support__topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: #A84F0C; /* Border on hover */
}

.page-support__topic-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3; /* Matches 400x300 */
  object-fit: cover;
  filter: none; /* No color filters */
  min-width: 200px; /* Enforce min size */
  min-height: 150px; /* Enforce min size */
}

.page-support__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFB04D; /* Glow color for titles */
  margin: 15px 20px 8px;
}

.page-support__card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #FFF3E6; /* Text Main */
  margin: 0 20px 20px;
}

.page-support__contact-cta {
  text-align: center;
  padding-bottom: 80px;
}

.page-support__contact-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #FFF3E6; /* Text Main */
}

.page-support__contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-support__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-support__button--primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #0D0E12; /* Dark text for contrast */
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-support__button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-support__button--secondary {
  background-color: transparent;
  color: #FF8C1A; /* Main color */
  border: 2px solid #A84F0C; /* Border color */
}

.page-support__button--secondary:hover {
  background-color: #A84F0C; /* Border color as background on hover */
  color: #FFF3E6; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-support__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-support__section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  .page-support__topic-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-support__contact-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px; /* Max width for stacked buttons */
    margin: 0 auto;
  }
}

@media (max-width: 549px) {
  .page-support__hero-section,
  .page-support__section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__main-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }
  .page-support__description,
  .page-support__contact-text {
    font-size: 1rem;
  }
  .page-support__topic-grid {
    grid-template-columns: 1fr; /* Single column on very small screens */
  }
}

/* Ensure images in content area are responsive and meet min size */
@media (max-width: 768px) {
  .page-support__topic-image {
    max-width: 100%;
    height: auto;
    /* min-width and min-height already defined for larger screens, ensuring it doesn't shrink below 200px */
  }
  .page-support__topic-card img {
    max-width: 100%;
    height: auto;
  }
}

/* Content area image CSS dimensions lower bound (applied globally to .page-support img) */
.page-support img {
  min-width: 200px; /* Enforce minimum display width */
  min- /* Enforce minimum display height (based on 4:3 aspect ratio for 400x300) */
  /* This rule applies to all images in the content area, ensuring they do not shrink below 200px */
}