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

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

.page-support .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-support .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support .cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-support .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a4f91 100%); /* Dark blue gradient */
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-support .hero-content {
  max-width: 800px;
  z-index: 1;
}

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

.page-support .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-support .hero-image {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
  z-index: 1;
}

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

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

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

.page-support .channel-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support .channel-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-support .card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-support .channel-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  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: #f0f0f0;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
  font-weight: bold;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

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

.page-support .faq-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-support .faq-button:hover {
  background: #002244; /* Darker primary color */
  transform: translateY(-1px);
}

/* Commitment Section */
.page-support .commitment-section {
  padding: 80px 0;
  background: linear-gradient(to right, #e0f2f7, #c1e4f0);
  color: #333;
}

.page-support .commitment-section .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.page-support .commitment-content {
  flex: 1;
}

.page-support .commitment-content ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-support .commitment-content li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
  position: relative;
  padding-left: 30px;
}

.page-support .commitment-content li::before {
  content: '✔';
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-support .list-highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-support .commitment-image {
  flex: 1;
  text-align: center;
}

.page-support .commitment-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Quick Guide Section */
.page-support .quick-guide-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-support .step-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support .step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-support .step-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-support .step-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support .step-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support .step-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
}

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

.page-support .final-cta {
  text-align: center;
  margin-top: 50px;
  font-size: 1.2em;
  color: #333;
}

.page-support .final-cta a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-support .final-cta a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support .hero-title {
    font-size: 2.8em;
  }
  .page-support .hero-description {
    font-size: 1.1em;
  }
  .page-support .section-title {
    font-size: 2em;
  }
  .page-support .commitment-section .container {
    flex-direction: column;
  }
  .page-support .commitment-image {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-support .hero-section {
    padding: 60px 0;
  }
  .page-support .hero-title {
    font-size: 2.2em;
  }
  .page-support .hero-description {
    font-size: 1em;
  }
  .page-support .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support .section-title {
    font-size: 1.8em;
  }
  .page-support .section-description {
    font-size: 0.95em;
  }
  .page-support .channels-grid, .page-support .guide-steps {
    grid-template-columns: 1fr;
  }
  .page-support .channel-card, .page-support .step-item {
    padding: 25px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-support .commitment-content ul {
    margin-top: 20px;
  }
  .page-support .commitment-content li {
    font-size: 1em;
  }
  .page-support .step-icon {
    width: 90px;
    height: 90px;
  }
  .page-support .step-title {
    font-size: 1.4em;
  }
  .page-support .final-cta {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-support .hero-section {
    padding: 40px 0;
  }
  .page-support .hero-title {
    font-size: 1.8em;
  }
  .page-support .hero-description {
    font-size: 0.9em;
  }
  .page-support .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-support .section-title {
    font-size: 1.5em;
  }
  .page-support .section-description {
    font-size: 0.85em;
  }
  .page-support .channel-card, .page-support .step-item {
    padding: 20px;
  }
  .page-support .card-title, .page-support .step-title {
    font-size: 1.3em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .page-support .commitment-content li {
    font-size: 0.9em;
  }
  .page-support .final-cta {
    font-size: 1em;
  }
}