/* style/support.css */
.page-support {
  color: #333333; /* Dark text for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A192F; /* Primary color as background for hero text */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  line-height: 1.2;
}

.page-support__intro-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.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, border-color 0.3s ease;
  font-size: 1.1em;
}

.page-support__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

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

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

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-support__section-title {
  font-size: 2.8em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

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

.page-support__faq-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

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

.page-support__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-question {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  font-size: 1em;
  color: #666666;
  display: none;
  margin-top: 15px;
}

.page-support__faq-answer.active {
  display: block;
}

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

.page-support__contact-section .page-support__section-title {
  color: #FFD700;
}

.page-support__contact-section .page-support__section-description {
  color: #f0f0f0;
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-support__contact-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support__contact-icon {
  width: 200px; /* Min size */
  height: 200px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-support__contact-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-support__button--outline:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-support__resource-section {
  padding: 80px 0;
  background-color: #f4f4f4;
}

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

.page-support__resource-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-support__resource-icon {
  width: 200px; /* Min size */
  height: 200px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-support__resource-title {
  font-size: 1.6em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-support__resource-title a {
  color: #0A192F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__resource-title a:hover {
  color: #FFD700;
}

.page-support__resource-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__button--text {
  background-color: transparent;
  color: #FFD700;
  border: none;
  padding: 10px 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-support__button--text:hover {
  color: #0A192F;
}

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

.page-support__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #0A192F;
  margin-bottom: 20px;
}

.page-support__cta-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 40px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 3em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px);
  }
  .page-support__hero-section {
    padding: 60px 20px;
  }
  .page-support__main-title {
    font-size: 2.5em;
  }
  .page-support__intro-text {
    font-size: 1.1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-support__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-support__faq-item, .page-support__contact-card, .page-support__resource-card {
    padding: 25px;
  }
  .page-support__faq-question {
    font-size: 1.3em;
  }
  .page-support__cta-title {
    font-size: 2.2em;
  }
  .page-support__cta-description {
    font-size: 1.1em;
  }
  /* Ensure images do not overflow on mobile */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-icon, .page-support__resource-icon {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 2em;
  }
  .page-support__intro-text {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
}