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

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

.page-support h1, .page-support h2, .page-support h3 {
  color: #8B0000; /* Deep Red */
  font-weight: bold;
  margin-bottom: 20px;
}

.page-support h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-support h3 {
  font-size: 1.6em;
}

.page-support p {
  margin-bottom: 15px;
}

.page-support ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

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

/* Hero Banner */
.page-support .hero-banner {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support .hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

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

.page-support .hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

.page-support .hero-content {
  color: #ffffff;
  padding: 0 20px;
}

.page-support .hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-support .cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support .cta-button:hover {
  background-color: #e6c200; /* Darker Gold */
  transform: translateY(-3px);
}

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

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

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

.page-support .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-support .contact-item h3 {
  color: #8B0000; /* Deep Red */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-support .contact-item p {
  font-size: 0.95em;
  color: #555555;
  min-height: 60px;
}

.page-support .contact-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-support .contact-button:hover {
  background-color: #e6c200; /* Darker Gold */
}

/* Quick Guides */
.page-support .quick-guides {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-support .guide-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support .guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-support .guide-card h3 {
  padding: 20px 25px 0;
  margin-bottom: 10px;
  font-size: 1.4em;
}

.page-support .guide-card h3 a {
  color: #8B0000; /* Deep Red */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support .guide-card h3 a:hover {
  color: #FFD700; /* Gold */
}

.page-support .guide-card p {
  padding: 0 25px 20px;
  color: #555555;
  font-size: 0.95em;
}

.page-support .read-more-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 25px 25px;
  transition: background-color 0.3s ease;
}

.page-support .read-more-button:hover {
  background-color: #e6c200; /* Darker Gold */
}

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

.page-support .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-support .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

.page-support .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #8B0000; /* Deep Red */
  transition: transform 0.3s ease;
}

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

.page-support .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fcfcfc;
  border-top: 1px solid #f0f0f0;
}

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

.page-support .faq-answer p {
  margin-bottom: 0;
  color: #555555;
}

/* Responsible Gaming */
.page-support .responsible-gaming {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-support .responsible-gaming h2 {
  color: #8B0000; /* Deep Red */
}

.page-support .responsible-gaming p {
  color: #555555;
}

.page-support .responsible-gaming ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.page-support .responsible-gaming li {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700; /* Gold */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  color: #444444;
}

.page-support .responsible-gaming li strong {
  color: #8B0000; /* Deep Red */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support h1 {
    font-size: 2.4em;
  }
  .page-support h2 {
    font-size: 1.8em;
  }
  .page-support h3 {
    font-size: 1.4em;
  }
  .page-support .hero-image {
    max-width: 600px;
  }
  .page-support .contact-grid, .page-support .guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-support .contact-item p {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .page-support .hero-banner {
    padding: 40px 0;
  }
  .page-support h1 {
    font-size: 2em;
  }
  .page-support h2 {
    font-size: 1.6em;
  }
  .page-support .hero-content p {
    font-size: 1em;
  }
  .page-support .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support .contact-grid, .page-support .guide-grid {
    grid-template-columns: 1fr;
  }
  .page-support .contact-item, .page-support .guide-card {
    margin: 0 10px;
  }
  .page-support .faq-question {
    padding: 15px 20px;
  }
  .page-support .faq-question h3 {
    font-size: 1.1em;
  }
  .page-support .faq-toggle {
    font-size: 20px;
  }
  .page-support .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-support h1 {
    font-size: 1.8em;
  }
  .page-support h2 {
    font-size: 1.4em;
  }
  .page-support .hero-image {
    margin-bottom: 20px;
  }
  .page-support .contact-item, .page-support .guide-card {
    padding: 20px;
  }
  .page-support .contact-icon {
    width: 80px;
    height: 80px;
  }
  .page-support .contact-item h3 {
    font-size: 1.3em;
  }
  .page-support .guide-image {
    height: 160px;
  }
  .page-support .guide-card h3 {
    font-size: 1.2em;
  }
  .page-support .read-more-button {
    margin: 0 20px 20px;
  }
}