/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-support__hero {
  background: linear-gradient(135deg, #003366, #1a4a7d);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Accent color for title */
  font-weight: bold;
}

.page-support__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-support__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Accent color for CTA */
  color: #003366; /* Primary color for text on accent background */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-support__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-support__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-support__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  margin-left: 15px;
}

.page-support__cta-button--secondary:hover {
  background-color: #002244;
  color: #FFCC00;
}

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

.page-support__section:nth-of-type(odd) {
  background-color: #f8f8f8;
}

.page-support__section:nth-of-type(even) {
  background-color: #ffffff;
}

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

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

/* FAQ Section */
.page-support__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 12px 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.3em;
  color: #003366; /* Primary color for questions */
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFCC00;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  font-size: 1em;
  color: #444;
  margin-top: 10px;
  padding-left: 10px;
  border-left: 3px solid #FFCC00;
  display: none; /* Hidden by default, toggled by JS */
}

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

.page-support__inline-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__inline-link:hover {
  color: #FFCC00;
}

/* Contact Section */
.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__method {
  background-color: #003366;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-support__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(90%) saturate(1500%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Adjust to make icon yellow/gold */
}

.page-support__method-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFCC00;
}

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

.page-support__method .page-support__cta-button {
  background-color: #FFCC00;
  color: #003366;
}

.page-support__method .page-support__cta-button:hover {
  background-color: #e6b800;
}

/* Guides Section */
.page-support__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__guide-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-support__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-support__guide-title {
  font-size: 1.3em;
  color: #003366;
  margin: 20px 15px 10px;
}

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

.page-support__read-more {
  display: inline-block;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px 20px;
  transition: color 0.3s ease;
}

.page-support__read-more:hover {
  color: #FFCC00;
}

/* Feedback Form */
.page-support__feedback-form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-support__form-group {
  margin-bottom: 20px;
}

.page-support__form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #003366;
}

.page-support__form-input,
.page-support__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease;
}

.page-support__form-input:focus,
.page-support__form-textarea:focus {
  border-color: #FFCC00;
  outline: none;
}

.page-support__form-textarea {
  resize: vertical;
}

.page-support__submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #003366;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-support__submit-button:hover {
  background-color: #002244;
}

/* Promo Section */
.page-support__promo {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-support__promo .page-support__section-title {
  color: #FFCC00;
  margin-bottom: 25px;
}

.page-support__promo .page-support__section-intro {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__guide-grid {
    grid-template-columns: 1fr;
  }
  .page-support__cta-button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-support__cta-button--secondary {
    margin-top: 15px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__cta-button {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-support__cta-button--secondary {
    margin-left: 0;
  }
}