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

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

.page-support section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

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

.page-support .section-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

.page-support .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700;
  color: #000080;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #FFD700;
}

.page-support .cta-button:hover {
  background-color: #000080;
  color: #FFD700;
  border-color: #000080;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-support .hero-support-section {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
}

.page-support .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-support .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 128, 0.7); /* Dark blue overlay */
  z-index: 2;
}

.page-support .hero-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

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

.page-support .hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Contact Channels */
.page-support .contact-channels-section {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 60px 20px;
}

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

.page-support .channel-item {
  text-align: center;
  padding: 30px;
  background-color: #f0f8ff; /* Light blue background */
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support .channel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-support .channel-title {
  font-size: 22px;
  color: #000080;
  margin-bottom: 15px;
}

.page-support .channel-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.page-support .channel-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #000080;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support .channel-button:hover {
  background-color: #000080;
  color: #FFD700;
}

/* Quick Guide Section */
.page-support .quick-guide-section {
  background-color: #f2f2f2;
  padding: 60px 20px;
}

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

.page-support .guide-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.page-support .guide-title {
  font-size: 24px;
  color: #000080;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-support .guide-item ul {
  list-style: none;
  padding: 0;
}

.page-support .guide-item ul li {
  margin-bottom: 10px;
}

.page-support .guide-item ul li a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.page-support .guide-item ul li a:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* FAQ Section */
.page-support .faq-section {
  background-color: #ffffff;
  padding: 60px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-support .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.page-support .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

.page-support .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #000080;
}

.page-support .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 15px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

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

.page-support .faq-answer p {
  margin: 0;
  color: #444;
  font-size: 16px;
}

.page-support .faq-answer a {
  color: #000080;
  text-decoration: underline;
}

.page-support .faq-answer a:hover {
  color: #FFD700;
}

/* Responsible Gaming Section */
.page-support .responsible-gaming-section {
  background-color: #e0f2f7; /* Light blue background */
  padding: 60px 20px;
  text-align: center;
}

.page-support .responsible-gaming-image {
  max-width: 600px;
  height: auto;
  margin: 0 auto 30px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Feedback Section */
.page-support .feedback-section {
  background-color: #000080;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-support .feedback-section .section-title {
  color: #FFD700;
}

.page-support .feedback-section .section-intro {
  color: #e0e0e0;
}

.page-support .feedback-section .cta-button {
  background-color: #FFD700;
  color: #000080;
  border-color: #FFD700;
}

.page-support .feedback-section .cta-button:hover {
  background-color: #ffffff;
  color: #000080;
  border-color: #ffffff;
}

/* 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 .section-intro {
    font-size: 16px;
  }
  .page-support .channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .page-support .guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support section {
    padding: 40px 0;
  }
  .page-support .hero-support-section {
    height: 400px;
  }
  .page-support .hero-title {
    font-size: 32px;
  }
  .page-support .hero-description {
    font-size: 16px;
  }
  .page-support .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-support .section-title {
    font-size: 26px;
  }
  .page-support .section-intro {
    font-size: 15px;
  }
  .page-support .channels-grid,
  .page-support .guide-grid {
    grid-template-columns: 1fr;
  }
  .page-support .channel-item, .page-support .guide-item {
    padding: 25px;
  }
  .page-support .channel-icon {
    width: 80px;
    height: 80px;
  }
  .page-support .channel-title {
    font-size: 20px;
  }
  .page-support .faq-question h3 {
    font-size: 16px;
  }
  .page-support .faq-toggle {
    font-size: 20px;
  }
  .page-support .responsible-gaming-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-support .hero-support-section {
    height: 350px;
  }
  .page-support .hero-title {
    font-size: 28px;
  }
  .page-support .hero-description {
    font-size: 14px;
  }
  .page-support .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .page-support .section-title {
    font-size: 22px;
  }
  .page-support .section-intro {
    font-size: 14px;
  }
  .page-support .channel-item, .page-support .guide-item {
    padding: 20px;
  }
  .page-support .faq-question h3 {
    font-size: 15px;
  }
}