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

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

.page-support .section-title {
  font-size: 36px;
  color: var(--primary-color, #2C3E50);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-support .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--auxiliary-color, #F39C12);
  border-radius: 2px;
}

.page-support .text-content {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Banner */
.page-support .hero-banner {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support .hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-support .hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  object-fit: cover;
}

.page-support .hero-content {
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.page-support .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #F39C12; /* Auxiliary color for highlight */
}

.page-support .hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.8;
  text-align: center;
}

.page-support .cta-button {
  display: inline-block;
  background-color: var(--auxiliary-color, #F39C12);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

/* Introduction Section */
.page-support .introduction-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

/* Support Channels Section */
.page-support .support-channels-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

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

.page-support .channel-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support .channel-icon {
  width: 150px; /* Increased size for content image */
  height: 150px; /* Increased size for content image */
  margin-bottom: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.page-support .channel-card:hover .channel-icon {
  transform: scale(1.05);
}

.page-support .card-title {
  font-size: 24px;
  color: var(--primary-color, #2C3E50);
  margin-bottom: 15px;
}

.page-support .card-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  text-align: justify;
}

.page-support .card-button {
  display: inline-block;
  background-color: var(--primary-color, #2C3E50);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support .card-button:hover {
  background-color: var(--auxiliary-color, #F39C12);
  transform: translateY(-2px);
}

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

.page-support .guidance-item {
  margin-bottom: 40px;
  padding: 25px;
  background-color: #f9f9f9;
  border-left: 5px solid var(--auxiliary-color, #F39C12);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-support .guidance-title {
  font-size: 26px;
  color: var(--primary-color, #2C3E50);
  margin-bottom: 15px;
}

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

.page-support .commitment-item {
  margin-bottom: 30px;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.page-support .commitment-title {
  font-size: 26px;
  color: var(--auxiliary-color, #F39C12);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.page-support .commitment-title::before {
  content: '✓';
  color: var(--primary-color, #2C3E50);
  font-size: 30px;
  margin-right: 15px;
  font-weight: bold;
}

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

.page-support .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.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:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  font-size: 19px;
  color: var(--primary-color, #2C3E50);
  margin: 0;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--auxiliary-color, #F39C12);
  margin-left: 15px;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color, #2C3E50);
}

.faq-answer p {
  font-size: 16px;
  color: #555;
  margin: 0;
  text-align: justify;
}

/* Call to Action Section Bottom */
.page-support .cta-section {
  padding: 60px 0;
  background-color: var(--primary-color, #2C3E50);
  text-align: center;
  color: #ffffff;
}

.page-support .cta-section .section-title {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-support .cta-section .section-title::after {
  background-color: var(--auxiliary-color, #F39C12);
}

.page-support .cta-section .text-content {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-support .cta-button-bottom {
  display: inline-block;
  background-color: var(--auxiliary-color, #F39C12);
  color: #ffffff;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-support .cta-button-bottom:hover {
  background-color: #e08e0b;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support .hero-title {
    font-size: 40px;
  }
  .page-support .hero-description {
    font-size: 18px;
  }
  .page-support .section-title {
    font-size: 30px;
  }
  .page-support .channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-support .channel-icon {
    width: 120px;
    height: 120px;
  }
  .page-support .card-title {
    font-size: 22px;
  }
  .page-support .guidance-title, .page-support .commitment-title {
    font-size: 24px;
  }
  .faq-question h3 {
    font-size: 18px;
  }
  .faq-toggle {
    font-size: 24px;
  }
  .page-support .cta-button-bottom {
    font-size: 20px;
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .page-support .hero-banner {
    padding: 60px 0;
  }
  .page-support .hero-title {
    font-size: 32px;
  }
  .page-support .hero-description {
    font-size: 16px;
  }
  .page-support .cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-support .section-title {
    font-size: 28px;
  }
  .page-support .channels-grid {
    grid-template-columns: 1fr;
  }
  .page-support .channel-card {
    padding: 25px;
  }
  .page-support .channel-icon {
    width: 100px;
    height: 100px;
  }
  .page-support .card-title {
    font-size: 20px;
  }
  .page-support .card-description {
    font-size: 15px;
  }
  .page-support .guidance-item, .page-support .commitment-item {
    padding: 20px;
  }
  .page-support .guidance-title, .page-support .commitment-title {
    font-size: 22px;
  }
  .page-support .commitment-title::before {
    font-size: 26px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 17px;
  }
  .faq-toggle {
    font-size: 22px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-support .cta-button-bottom {
    font-size: 18px;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-support .hero-title {
    font-size: 28px;
  }
  .page-support .hero-description {
    font-size: 15px;
  }
  .page-support .section-title {
    font-size: 24px;
  }
  .page-support .text-content {
    font-size: 15px;
  }
  .page-support .guidance-title, .page-support .commitment-title {
    font-size: 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .page-support .cta-button-bottom {
    font-size: 16px;
    padding: 12px 25px;
  }
}