.page-support {
  color: #333333;
  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 {
  background-color: #003366;
  color: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-support__hero-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
}

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

.page-support__hero-description {
  font-size: 1.2em;
  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, transform 0.3s ease;
  font-size: 1.1em;
}

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

.page-support__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

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

.page-support__button--tertiary:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

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

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

.page-support__faq-section,
.page-support__guides-section,
.page-support__contact-section {
  padding: 80px 0;
}

.page-support__faq-section {
  background-color: #f9f9f9;
}

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

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

.page-support__faq-question {
  font-size: 1.2em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

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

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

.page-support__faq-question.active {
  background-color: #e6e6e6;
}

.page-support__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-answer.active {
  max-height: 500px; /* Adjust based on content */
  padding: 20px 25px;
}

.page-support__faq-answer p {
  margin: 0;
  color: #555555;
}

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

.page-support__faq-answer a:hover {
  color: #FFD700;
}

.page-support__faq-cta {
  text-align: center;
  margin-top: 40px;
}

.page-support__faq-cta p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555555;
}

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

.page-support__guide-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-support__guide-card h3 {
  font-size: 1.4em;
  color: #003366;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-support__guide-card h3 a {
  color: #003366;
  text-decoration: none;
}

.page-support__guide-card h3 a:hover {
  color: #FFD700;
}

.page-support__guide-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 20px;
  margin: 0;
}

.page-support__contact-section {
  background-color: #003366;
  color: #ffffff;
}

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

.page-support__contact-section .page-support__section-intro {
  color: #e0e0e0;
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  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.2);
}

.page-support__contact-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__contact-type {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support__contact-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

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

@media (max-width: 768px) {
  .page-support__hero-content {
    padding: 60px 15px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-intro {
    font-size: 1em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-support__guide-card h3 {
    font-size: 1.2em;
  }
  .page-support__guide-image, .page-support__contact-icon {
    max-width: 100%;
    height: auto;
  }
  .page-support__guides-grid, .page-support__contact-options {
    grid-template-columns: 1fr;
  }
  .page-support__hero-image,
  .page-support__faq-item img,
  .page-support__guide-card img,
  .page-support__contact-card img {
    max-width: 100%;
    height: auto;
  }
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__contact-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 0.9em;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-support__faq-answer.active {
    padding: 15px 15px;
  }
  .page-support__guide-card h3 {
    font-size: 1.1em;
  }
  .page-support__guide-description {
    font-size: 0.85em;
  }
  .page-support__contact-type {
    font-size: 1.4em;
  }
  .page-support__contact-description {
    font-size: 0.9em;
  }
}