.page-support {
  color: #ffffff; /* Text color for overall page content, contrasted with dark background */
  background-color: var(--color-secondary); /* Assuming --color-secondary is a dark color from shared.css */
  padding-top: var(--header-offset, 120px);
}

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

.page-support__hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-support__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

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

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-support__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-support__section-title {
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-support__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-support__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Darker background for contrast */
}

.page-support__faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.page-support__faq-item {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px solid #333;
  margin-top: 10px;
}

.page-support__faq-answer a {
  color: #FCBC45;
  text-decoration: underline;
}

.page-support__faq-image {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #000000;
}

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-support__contact-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-support__contact-icon {
  width: 250px; /* Increased size to meet minimum requirements */
  height: 250px; /* Increased size to meet minimum requirements */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__contact-card-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-support__contact-card-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__resources-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-support__resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-support__resource-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-support__resource-card-title {
  font-size: 1.5em;
  color: #FCBC45;
  padding: 20px 20px 10px 20px;
}

.page-support__resource-card-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px 20px 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.page-support__cta-bottom-section {
  padding: 80px 0;
  background-color: #000000;
  text-align: center;
}

.page-support__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Buttons */
.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

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

.page-support__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FCBC45;
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 0;
    min-height: 400px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-cta-group, .page-support__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__faq-item, .page-support__contact-card, .page-support__resource-card {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__faq-answer {
    font-size: 0.9em;
  }
  .page-support__contact-icon {
    width: 200px; /* Ensure minimum size */
    height: 200px; /* Ensure minimum size */
  }
  .page-support__contact-card-title {
    font-size: 1.5em;
  }
  .page-support__resource-image {
    height: 200px;
  }
  .page-support__resource-card-title {
    font-size: 1.3em;
  }
  .page-support__resource-card-description {
    font-size: 0.9em;
  }
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__faq-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__button {
    width: 90%;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__faq-item, .page-support__contact-card, .page-support__resource-card {
    padding: 15px;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__contact-icon {
    width: 200px; /* Ensure minimum size */
    height: 200px; /* Ensure minimum size */
  }
}