.page-support {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  background-color: #f8f8f8;
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.page-support__hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-support__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1em;
  cursor: pointer;
  border: none;
}

.page-support__button--primary {
  background-color: #000000;
  color: #FFFFFF;
}

.page-support__button--primary:hover {
  background-color: #333333;
}

.page-support__button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-support__button--secondary:hover {
  background-color: #f0f0f0;
}

.page-support__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  background-color: #f9f9f9;
  color: #000000;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-question:hover {
  background-color: #f0f0f0;
}

.page-support__faq-answer {
  padding: 0 25px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-support__faq-answer.open {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
  color: #555555;
}

.page-support__button--inline {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45; /* Login color for action buttons */
  color: #000000;
  border-radius: 5px;
}

.page-support__button--inline:hover {
  background-color: #e0a53b;
}

.page-support__center-button {
  text-align: center;
  margin-top: 40px;
}

.page-support__contact-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-support__method-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-support__method-card:hover {
  transform: translateY(-5px);
}

.page-support__method-icon {
  width: 100%;
  max-width: 250px; /* Max-width ensures it doesn't get too large, min-width is handled by general img rule */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__method-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-support__method-text {
  color: #555555;
  margin-bottom: 25px;
}

.page-support__additional-resources {
  padding: 60px 0 80px;
  background-color: #FFFFFF;
}

.page-support__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__resource-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
}

.page-support__resource-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-support__resource-title {
  font-size: 1.4em;
  color: #000000;
  padding: 20px 20px 10px;
}

.page-support__resource-title a {
  text-decoration: none;
  color: inherit;
}

.page-support__resource-title a:hover {
  color: #FCBC45; /* Highlight color on hover */
}

.page-support__resource-text {
  color: #555555;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-support__resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: 0; /* Assuming shared.css handles body padding-top */
  }
  .page-support__hero-section {
    padding: 60px 15px 30px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 18px 20px;
  }
  .page-support__faq-answer.open {
    padding: 15px 20px;
  }
  .page-support__contact-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-support__method-card {
    padding: 25px;
  }
  .page-support__method-title {
    font-size: 1.4em;
  }
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__resource-image {
    height: 200px;
  }
  .page-support__resource-title {
    font-size: 1.2em;
  }

  /* Critical: Prevent image overflow on mobile and ensure min-size for content images */
  .page-support img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Enforce min-size even on mobile */
    min-height: 200px !important;
  }
  .page-support {
    overflow-x: hidden;
  }
}

/* Ensure all images within .page-support are at least 200x200px or larger */
/* This general rule applies to all images in the content area */
.page-support img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensure images fill their space nicely */
  filter: none; /* Explicitly ensure no filters are applied */
}

/* The max-width for method-icon is 250px, which is > 200px, so it adheres to the rule */