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

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

.page-support .section-title {
  color: #FFD700;
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Hero Banner Section */
.page-support .hero-banner {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #0A244A, #1A3A6A);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-support .hero-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Adjust max-width for image */
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
  object-fit: cover;
}

.page-support .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

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

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

.page-support .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #0A244A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.page-support .cta-button:hover {
  background: #FFC400;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

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

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

.page-support .method-card {
  background-color: #1A3A6A;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support .method-card:hover {
  transform: translateY(-10px);
  background-color: #2A4A7A;
}

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

.page-support .card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-support .card-button {
  display: inline-block;
  padding: 12px 30px;
  background: #FFD700;
  color: #0A244A;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-support .card-button:hover {
  background: #FFC400;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

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

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

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #1A3A6A;
  color: #FFD700;
  border: 1px solid #2A4A7A;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: #2A4A7A;
  border-color: #FFD700;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #FFD700;
  font-weight: bold;
}

.faq-toggle {
  font-size: 2.2em;
  font-weight: bold;
  color: #FFD700;
  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 30px;
  background: #0A244A;
  color: #E0E0E0;
  border-radius: 0 0 10px 10px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 30px;
  border-top: 1px solid #2A4A7A;
}

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

.faq-answer p {
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-support .faq-button {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #0A244A;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 15px;
}

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

/* Responsible Gaming Section */
.page-support .responsible-gaming {
  padding: 100px 0;
  background-color: #0A244A;
  text-align: center;
}

/* Quick Links Section */
.page-support .quick-links {
  padding: 100px 0;
  background-color: #112B50;
}

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

.page-support .quick-link-card {
  background-color: #1A3A6A;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: #E0E0E0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support .quick-link-card:hover {
  transform: translateY(-8px);
  background-color: #2A4A7A;
}

.page-support .quick-link-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support .quick-link-text {
  font-size: 1em;
  color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support .hero-title {
    font-size: 3em;
  }
  .page-support .section-title {
    font-size: 2.5em;
  }
  .page-support .card-title {
    font-size: 1.6em;
  }
  .faq-question h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-support .hero-banner {
    padding: 60px 0;
  }
  .page-support .hero-title {
    font-size: 2.5em;
  }
  .page-support .hero-description {
    font-size: 1.1em;
  }
  .page-support .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-support .section-title {
    font-size: 2.2em;
  }
  .page-support .section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-support .contact-methods, .page-support .faq-section, .page-support .responsible-gaming, .page-support .quick-links {
    padding: 60px 0;
  }
  .page-support .method-card, .page-support .quick-link-card {
    padding: 30px;
  }
  .page-support .card-icon {
    width: 100px;
    height: 100px;
  }
  .page-support .card-title {
    font-size: 1.4em;
  }
  .faq-question {
    padding: 18px 25px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 2em;
  }
  .faq-answer {
    padding: 0 25px;
  }
  .faq-item.active .faq-answer {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-support .hero-title {
    font-size: 2em;
  }
  .page-support .hero-description {
    font-size: 0.95em;
  }
  .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.9em;
    margin-bottom: 30px;
  }
  .page-support .method-card, .page-support .quick-link-card {
    padding: 20px;
  }
  .page-support .card-icon {
    width: 80px;
    height: 80px;
  }
  .page-support .card-title {
    font-size: 1.2em;
  }
  .faq-question {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-question h3 {
    font-size: 1em;
    margin-bottom: 10px;
  }
  .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
    font-size: 1.8em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 20px;
  }
  .page-support .faq-button {
    padding: 8px 20px;
    font-size: 0.9em;
  }
}