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

.page-support a {
  text-decoration: none;
  color: #CC0000;
  transition: color 0.3s ease;
}

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

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

.page-support-hero {
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-support-hero-content h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support-hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-support-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FFD700;
  color: #CC0000;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support-cta-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-support-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-support-section:last-of-type {
  border-bottom: none;
}

.page-support-section h2 {
  font-size: 2.2em;
  color: #CC0000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-support-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-support-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.05em;
  color: #555;
}

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

.page-support-card-grid-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

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

.page-support-card-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-support-card h3 {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-support-card h3 a {
  color: #CC0000;
  font-weight: bold;
}

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

.page-support-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  text-align: left;
  flex-grow: 1;
}

.page-support-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  width: 100%;
}

.page-support-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.page-support-list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-support-card ol {
  list-style: decimal;
  padding-left: 20px;
  margin: 0 0 20px 0;
  text-align: left;
  width: 100%;
}

.page-support-card ol li {
  margin-bottom: 10px;
  color: #555;
}

.page-support-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #CC0000;
  color: #ffffff;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto;
}

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

/* FAQ Section */
.page-support-faq-list {
  margin-top: 40px;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #333;
  flex-grow: 1;
  text-align: left;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #CC0000;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #fcfcfc;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Enough height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.faq-answer p {
  margin-bottom: 15px;
  color: #555;
  text-align: left;
  font-size: 1em;
}

.page-support-faq-link {
  display: inline-block;
  padding: 8px 15px;
  background-color: #FFD700;
  color: #CC0000;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support-faq-link:hover {
  background-color: #e0b800;
  color: #a00000;
}

/* Contact Section */
.page-support-contact-info {
  text-align: center;
  margin-top: 30px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-support-contact-info p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
}

.page-support-contact-link {
  font-weight: bold;
  color: #CC0000;
}

.page-support-contact-link:hover {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support-hero-content h1 {
    font-size: 2.2em;
  }
  .page-support-hero-content p {
    font-size: 1em;
  }
  .page-support-section h2 {
    font-size: 1.8em;
  }
  .page-support-card-grid-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-support-hero {
    padding: 60px 15px;
  }
  .page-support-hero-content h1 {
    font-size: 1.8em;
  }
  .page-support-hero-content p {
    font-size: 0.95em;
  }
  .page-support-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-support-section {
    padding: 40px 0;
  }
  .page-support-section h2 {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-support-section p {
    font-size: 0.9em;
  }
  .page-support-card-grid {
    grid-template-columns: 1fr;
  }
  .page-support-card {
    padding: 25px;
  }
  .page-support-card h3 {
    font-size: 1.3em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-support-hero {
    padding: 40px 10px;
  }
  .page-support-hero-content h1 {
    font-size: 1.5em;
  }
  .page-support-cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-support-section h2 {
    font-size: 1.4em;
  }
  .page-support-card-img {
    max-width: 250px;
  }
  .page-support-list li,
  .page-support-card ol li {
    font-size: 0.9em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 18px;
  }
}