.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: 20px;
}

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

.page-support h1 {
  font-size: 3em;
  text-align: center;
  margin-bottom: 30px;
  color: #FFFFFF; /* White for hero section */
}

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

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

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

.page-support a {
  color: #8B0000; /* Secondary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support a:hover {
  color: #FFD700; /* Primary color on hover */
}

/* Hero Section */
.page-support .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #8B0000, #FFD700); /* Gradient background for visual appeal */
  color: #ffffff;
}

.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%;
  margin-bottom: 30px;
}

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

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

.page-support .hero-content p {
  color: #f0f0f0;
  font-size: 1.2em;
}

.page-support .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Primary color */
  color: #8B0000; /* Secondary color for text */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFD700;
}

.page-support .cta-button:hover {
  background: #e6c200; /* Slightly darker primary on hover */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: #e6c200;
}

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

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

.page-support .contact-card {
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  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;
}

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

.page-support .card-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  padding: 15px;
  background-color: rgba(255, 215, 0, 0.1);
}

.page-support .contact-card h3 {
  color: #8B0000;
  margin-bottom: 15px;
  font-size: 1.6em;
}

.page-support .contact-card p {
  color: #555;
  font-size: 1em;
  min-height: 80px; /* Ensure consistent card height */
}

.page-support .card-button {
  display: inline-block;
  padding: 12px 25px;
  background: #8B0000; /* Secondary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid #8B0000;
}

.page-support .card-button:hover {
  background: #FFD700; /* Primary color on hover */
  color: #8B0000;
  border-color: #FFD700;
  transform: translateY(-2px);
}

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

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

.page-support .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  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: 20px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-support .faq-question h3 {
  margin: 0;
  color: #333333;
  font-size: 1.25em;
  flex-grow: 1;
}

.page-support .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700; /* Primary color for toggle */
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.page-support .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #8B0000; /* Secondary color when active */
}

.page-support .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #fefefe;
}

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

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

/* Responsible Gaming & Security Sections */
.page-support .responsible-gaming-section,
.page-support .security-privacy-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-support .responsible-gaming-section {
    background-color: #f0f0f0;
}

.page-support .security-privacy-section {
    background-color: #ffffff;
}

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

.page-support .grid-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  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;
}

.page-support .responsible-gaming-section .grid-item {
    background: #ffffff;
}

.page-support .security-privacy-section .grid-item {
    background: #fdfdfd;
}

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

.page-support .grid-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  padding: 10px;
  background-color: rgba(139, 0, 0, 0.1); /* Light secondary color */
}

.page-support .grid-item h3 {
  color: #8B0000;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.page-support .grid-item p {
  color: #555;
  font-size: 1em;
}

.page-support .disclaimer-text {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95em;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support h1 {
    font-size: 2.5em;
  }
  .page-support h2 {
    font-size: 2em;
  }
  .page-support .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-support .contact-cards,
  .page-support .content-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-support .hero-section {
    padding: 40px 15px;
  }
  .page-support h1 {
    font-size: 2em;
  }
  .page-support h2 {
    font-size: 1.8em;
  }
  .page-support h3 {
    font-size: 1.3em;
  }
  .page-support p {
    font-size: 1em;
  }
  .page-support .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-support .hero-image img {
    border-radius: 8px;
  }
  .page-support .contact-cards,
  .page-support .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support .faq-question {
    padding: 15px;
  }
  .page-support .faq-question h3 {
    font-size: 1.1em;
  }
  .page-support .faq-toggle {
    font-size: 1.5em;
  }
  .page-support .faq-answer {
    padding: 15px;
  }
  .page-support .card-icon,
  .page-support .grid-icon {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .page-support h1 {
    font-size: 1.8em;
  }
  .page-support h2 {
    font-size: 1.5em;
  }
  .page-support h3 {
    font-size: 1.2em;
  }
  .page-support .cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-support .card-icon,
  .page-support .grid-icon {
    width: 80px;
    height: 80px;
  }
}