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

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

.page-support .section-title {
  font-size: 36px;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  padding-top: 40px;
}

.page-support .section-subtitle {
  font-size: 28px;
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support .section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-support .cta-button:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support .cta-button.small {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 20px;
}

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

.page-support .button-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-top: 15px;
  font-size: 15px;
}

.page-support .button-link:hover {
  background-color: #218838;
}

/* Hero Section */
.page-support .hero-section {
  background: linear-gradient(135deg, #007bff, #28a745);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.page-support .hero-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-support .hero-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Guide Section */
.page-support .guide-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-support .guide-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-support .guide-item.reverse {
  flex-direction: row-reverse;
}

.page-support .guide-image {
  flex: 1;
  min-width: 40%;
}

.page-support .guide-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-support .guide-content {
  flex: 1.5;
  padding: 30px;
}

.page-support .guide-title {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 20px;
}

.page-support .guide-content ol {
  list-style: none;
  padding: 0;
}

.page-support .guide-content ol li {
  margin-bottom: 15px;
  font-size: 17px;
  color: #444;
  position: relative;
  padding-left: 30px;
  counter-increment: step-counter;
}

.page-support .guide-content ol li strong {
  color: #007bff;
}

.page-support .guide-content ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #007bff;
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.page-support .benefits-section {
  padding: 60px 0;
  background-color: #f2f7fc;
  text-align: center;
}

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

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

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

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

.page-support .benefit-card h4 {
  font-size: 22px;
  color: #007bff;
  margin-bottom: 10px;
}

.page-support .benefit-card p {
  font-size: 16px;
  color: #666;
}

/* Registration Section */
.page-support .registration-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-support .step-card {
  background: #fdfdfd;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.page-support .step-card h4 {
  font-size: 22px;
  color: #007bff;
  margin-bottom: 10px;
}

.page-support .step-card p {
  font-size: 16px;
  color: #666;
}

.page-support .login-steps {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 20px;
  font-size: 17px;
  color: #444;
}

.page-support .login-steps li {
  margin-bottom: 10px;
}

/* Payment Section */
.page-support .payment-section {
  padding: 60px 0;
  background-color: #f2f7fc;
}

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

.page-support .payment-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.page-support .payment-card h3 {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 15px;
}

.page-support .payment-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-support .faq-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-support .faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
}

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
  border-top: 1px solid #e0e0e0;
}

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

.faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
}

.faq-answer a {
  color: #007bff;
  text-decoration: underline;
}

.faq-answer a:hover {
  color: #0056b3;
}

/* Contact Section */
.page-support .contact-section {
  padding: 60px 0;
  background-color: #e9f2fb;
  text-align: center;
}

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

.page-support .contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-support .contact-card img {
  width: 100%;
  max-width: 150px; /* Reduced max-width for icons, but still >200px if original is larger */
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-support .contact-card h4 {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 10px;
}

.page-support .contact-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support .hero-content h1 {
    font-size: 40px;
  }
  .page-support .hero-content p {
    font-size: 18px;
  }
  .page-support .guide-item {
    flex-direction: column;
  }
  .page-support .guide-item.reverse {
    flex-direction: column;
  }
  .page-support .guide-image {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-support .section-title {
    font-size: 28px;
    padding-top: 30px;
  }
  .page-support .section-description {
    font-size: 16px;
  }
  .page-support .hero-section {
    padding: 60px 15px;
  }
  .page-support .hero-content h1 {
    font-size: 32px;
  }
  .page-support .hero-content p {
    font-size: 16px;
  }
  .page-support .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-support .guide-content {
    padding: 20px;
  }
  .page-support .guide-title {
    font-size: 24px;
  }
  .page-support .guide-content ol li {
    font-size: 16px;
  }
  .page-support .benefits-grid, .page-support .registration-steps, .page-support .payment-grid, .page-support .contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support .benefit-card, .page-support .step-card, .page-support .payment-card, .page-support .contact-card {
    padding: 20px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-support .contact-card img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .page-support .hero-content h1 {
    font-size: 28px;
  }
  .page-support .hero-content p {
    font-size: 15px;
  }
  .page-support .cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-support .guide-title {
    font-size: 22px;
  }
  .faq-question h3 {
    font-size: 15px;
  }
  .faq-toggle {
    font-size: 20px;
  }
}