.page-support {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A202C;
}

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

.page-support .section-title {
  color: #FFD700; /* Gold for main titles */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-support .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #B0B0B0; /* Slightly lighter grey for descriptions */
}

/* Hero Section */
.page-support .hero-support {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.page-support .hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-support .hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  margin: 20px;
}

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

.page-support .hero-description {
  font-size: 1.2em;
  color: #F0F0F0;
  line-height: 1.8;
  margin-bottom: 30px;
}

.page-support .cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Contact Methods Section */
.page-support .contact-methods-section {
  padding: 80px 0;
  background-color: #2D3748; /* Slightly lighter dark background */
}

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

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

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

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

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

.page-support .method-text {
  font-size: 1em;
  line-height: 1.6;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-support .method-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2D3748;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #1A202C;
  color: #FFD700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #333C4D;
}

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

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.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 20px;
  background-color: #2D3748;
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.page-support .faq-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support .faq-link:hover {
    color: #FFC400;
    text-decoration: underline;
}

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

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

.page-support .guide-card {
  background-color: #1A202C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-support .guide-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support .guide-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-support .guide-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #B0B0B0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-support .guide-link {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support .guide-link:hover {
  background-color: #FFC400;
  transform: translateY(-2px);
}

/* Responsible Gaming Section */
.page-support .responsible-gaming-section {
  padding: 80px 0;
}

.page-support .responsible-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

.page-support .responsible-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.page-support .responsible-text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-support .responsible-text-content p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #E0E0E0;
  margin-bottom: 20px;
}

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

.page-support .responsible-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-support .responsible-list li strong {
  color: #FFD700;
}

/* Feedback Section */
.page-support .feedback-section {
  padding: 80px 0;
  background-color: #2D3748;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support .hero-title {
    font-size: 2.5em;
  }

  .page-support .hero-description {
    font-size: 1.1em;
  }

  .page-support .section-title {
    font-size: 2em;
  }

  .page-support .methods-grid, .page-support .guides-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-support .responsible-content {
    flex-direction: column;
    text-align: center;
  }

  .page-support .responsible-text-content {
    max-width: 100%;
  }

  .page-support .responsible-list {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-support .hero-overlay {
    padding: 30px;
  }
  .page-support .hero-title {
    font-size: 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;
    padding-top: 30px;
  }

  .page-support .section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-support .contact-methods-section, .page-support .faq-section, .page-support .guides-section, .page-support .responsible-gaming-section, .page-support .feedback-section {
    padding: 50px 0;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 1.5em;
  }

  .faq-answer {
    padding: 15px;
  }

  .page-support .guide-title {
    font-size: 1.4em;
  }

  .page-support .guide-text {
    font-size: 0.9em;
  }

  .page-support .responsible-text-content p {
    font-size: 1em;
  }

  .page-support .responsible-list {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-support .hero-overlay {
    padding: 20px;
  }
  .page-support .hero-title {
    font-size: 1.5em;
  }

  .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 .method-card, .page-support .guide-card {
    padding: 20px;
  }

  .page-support .method-title {
    font-size: 1.5em;
  }

  .page-support .method-text {
    font-size: 0.9em;
  }

  .page-support .method-button {
    padding: 10px 20px;
    font-size: 0.85em;
  }

  .page-support .guide-image {
    height: 150px;
  }

  .page-support .guide-title {
    font-size: 1.2em;
  }

  .page-support .guide-text {
    font-size: 0.85em;
  }

  .page-support .guide-link {
    padding: 8px 15px;
    font-size: 0.8em;
  }

  .page-support .responsible-list {
    margin-left: 15px;
  }
}