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

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

.page-support section {
  padding: 60px 0;
  text-align: center;
}

.page-support .section-title {
  font-size: 2.8em;
  color: var(--primary-color, #336699);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support .section-intro {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support .cta-button {
  display: inline-block;
  background: var(--secondary-color, #FFCC00);
  color: #333;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
}

.page-support .cta-button:hover {
  background: #e6b800; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support .cta-button.secondary-button {
  background: var(--primary-color, #336699);
  color: #ffffff;
}

.page-support .cta-button.secondary-button:hover {
  background: #2a527c; /* Slightly darker blue */
}

/* Support Hero Section */
.page-support .support-hero {
  background: linear-gradient(135deg, var(--primary-color, #336699) 0%, #2a527c 100%);
  color: #fff;
  padding: 80px 0;
}

.page-support .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
}

.page-support .hero-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-support .hero-image {
  margin-bottom: 30px;
}

.page-support .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Methods Section */
.page-support .contact-methods {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-support .contact-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support .contact-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  max-width: 100%;
}

.page-support .contact-title {
  font-size: 1.8em;
  color: var(--primary-color, #336699);
  margin-bottom: 10px;
}

.page-support .contact-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-support .contact-button {
  display: inline-block;
  background: var(--primary-color, #336699);
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support .contact-button:hover {
  background: #2a527c;
}

/* Guides Section */
.page-support .guides-section {
  background-color: #eaf1f6;
  padding: 80px 0;
}

.page-support .guide-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.page-support .guide-item:last-child {
  margin-bottom: 0;
}

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

.page-support .guide-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-support .guide-content {
  flex: 1;
  max-width: 50%;
}

.page-support .guide-title {
  font-size: 2.2em;
  color: var(--primary-color, #336699);
  margin-bottom: 15px;
}

.page-support .sub-guide-title {
  font-size: 1.5em;
  color: #444;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-support .guide-text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.page-support .guide-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-support .guide-list li {
  margin-bottom: 8px;
}

.page-support .guide-button {
  display: inline-block;
  background: var(--secondary-color, #FFCC00);
  color: #333;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support .guide-button:hover {
  background: #e6b800;
}

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

.page-support .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support .faq-image {
  margin-bottom: 40px;
}

.page-support .faq-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.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: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--primary-color, #336699);
}

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

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color, #FFCC00);
  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;
  text-align: left;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
  font-size: 1em;
}

.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: var(--primary-color, #336699);
}

/* Security Commitment Section */
.page-support .security-commitment {
  background-color: #f5f8fa;
  padding: 80px 0;
}

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

.page-support .security-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-support .security-icon {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  max-width: 100%;
}

.page-support .security-title {
  font-size: 1.6em;
  color: var(--primary-color, #336699);
  margin-bottom: 10px;
}

.page-support .security-description {
  font-size: 0.95em;
  color: #666;
}

/* Explore New8 Section */
.page-support .explore-new8 {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-support .explore-card {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-support .card-title {
  font-size: 1.5em;
  color: var(--primary-color, #336699);
  margin: 20px 20px 10px;
}

.page-support .card-title a {
  color: inherit;
  text-decoration: none;
}

.page-support .card-title a:hover {
  text-decoration: underline;
}

.page-support .card-description {
  font-size: 1em;
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-support .card-button {
  display: inline-block;
  background: var(--secondary-color, #FFCC00);
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-support .card-button:hover {
  background: #e6b800;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support .hero-title {
    font-size: 2.8em;
  }
  .page-support .section-title {
    font-size: 2.2em;
  }
  .page-support .guide-item {
    flex-direction: column;
    text-align: center;
  }
  .page-support .guide-item.reverse {
    flex-direction: column;
  }
  .page-support .guide-image,
  .page-support .guide-content {
    max-width: 100%;
  }
  .page-support .guide-list {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-support section {
    padding: 40px 0;
  }
  .page-support .hero-title {
    font-size: 2.2em;
  }
  .page-support .hero-description {
    font-size: 1em;
  }
  .page-support .section-title {
    font-size: 1.8em;
  }
  .page-support .section-intro {
    font-size: 0.9em;
  }
  .page-support .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support .contact-item,
  .page-support .security-item,
  .page-support .explore-card {
    padding: 20px;
  }
  .page-support .contact-title {
    font-size: 1.5em;
  }
  .page-support .guide-title {
    font-size: 1.8em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer p {
    font-size: 0.9em;
  }
  .page-support .card-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-support .hero-title {
    font-size: 1.8em;
  }
  .page-support .section-title {
    font-size: 1.5em;
  }
  .page-support .contact-icon {
    width: 80px;
  }
  .page-support .security-icon {
    width: 100px;
  }
  .page-support .guide-item {
    gap: 20px;
  }
}