/* style/support.css */
.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-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

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

.page-support .section-description a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-support .section-description a:hover {
  text-decoration: underline;
}

.page-support .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--secondary-color);
  color: #1A2E44;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-support .cta-button:hover {
  background: #ffc107; /* A slightly brighter gold for hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Hero Banner */
.page-support .hero-banner {
  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;
}

.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(26, 46, 68, 0.7); /* Dark 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: 3.5em;
  margin-bottom: 20px;
  color: #E0B354;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-support .hero-description a {
  color: #E0B354;
  text-decoration: none;
  font-weight: bold;
}

.page-support .hero-description a:hover {
  text-decoration: underline;
}

/* Intro Section */
.page-support .intro-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-support .feature-item {
  text-align: center;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support .feature-item .feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support .feature-item h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

/* Contact Channels */
.page-support .contact-channels {
  padding: 60px 0;
  background-color: #f0f4f8;
}

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

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

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

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

.page-support .channel-card h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-support .channel-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-support .channel-card .channel-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support .channel-card .channel-button:hover {
  background: #2b4f73; /* Slightly lighter primary color */
}

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

.page-support .guide-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-support .guide-item.reverse {
  flex-direction: row-reverse;
}

.page-support .guide-item .guide-image {
  flex: 0 0 400px; /* Fixed width for image */
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-support .guide-item .guide-content {
  flex: 1;
}

.page-support .guide-item h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-support .guide-item h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-support .guide-item h3 a:hover {
  text-decoration: underline;
}

.page-support .guide-item p {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

.page-support .guide-item ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.page-support .guide-item ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.page-support .guide-item .guide-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: #1A2E44;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support .guide-item .guide-button:hover {
  background: #ffc107;
}

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

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

.page-support .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-support .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.page-support .faq-item.active .faq-question h3 {
  color: #ffffff;
}

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

.page-support .faq-item.active .faq-question:hover {
  background-color: #2b4f73;
}

.page-support .faq-question h3 {
  font-size: 1.2em;
  color: var(--primary-color);
  margin: 0;
  transition: color 0.3s ease;
}

.page-support .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--secondary-color);
}

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

.page-support .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #f9f9f9;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

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

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

.page-support .faq-answer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-support .faq-answer a:hover {
  text-decoration: underline;
}

/* Responsible Gambling */
.page-support .responsible-gambling {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-support .rg-item {
  text-align: center;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.page-support .rg-item h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

/* Latest News */
.page-support .latest-news {
  padding: 60px 0;
  background-color: #f0f4f8;
}

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

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

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

.page-support .news-card .news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-support .news-card .news-content {
  padding: 25px;
}

.page-support .news-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  min-height: 60px; /* Ensure consistent card height */
}

.page-support .news-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support .news-card h3 a:hover {
  color: var(--secondary-color);
}

.page-support .news-card p {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 15px;
  min-height: 70px; /* Ensure consistent card height */
}

.page-support .news-card .news-date {
  font-size: 0.85em;
  color: #999;
  display: block;
}

.page-support .latest-news .cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support .hero-title {
    font-size: 2.8em;
  }
  .page-support .hero-description {
    font-size: 1.1em;
  }
  .page-support .section-title {
    font-size: 2em;
  }
  .page-support .section-description {
    font-size: 1em;
  }
  .page-support .guide-item {
    flex-direction: column;
    gap: 20px;
  }
  .page-support .guide-item.reverse {
    flex-direction: column;
  }
  .page-support .guide-item .guide-image {
    flex: none;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-support .hero-banner {
    height: 400px;
  }
  .page-support .hero-title {
    font-size: 2.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;
  }
  .page-support .features-grid,
  .page-support .channels-grid,
  .page-support .rg-features,
  .page-support .news-grid {
    grid-template-columns: 1fr;
  }
  .page-support .feature-item,
  .page-support .channel-card,
  .page-support .rg-item,
  .page-support .news-card {
    padding: 20px;
  }
  .page-support .faq-question {
    padding: 15px 20px;
  }
  .page-support .faq-question h3 {
    font-size: 1.1em;
  }
  .page-support .faq-toggle {
    font-size: 1.5em;
  }
  .page-support .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-support .hero-banner {
    height: 350px;
  }
  .page-support .hero-title {
    font-size: 1.8em;
  }
  .page-support .hero-description {
    font-size: 0.85em;
  }
  .page-support .section-title {
    font-size: 1.5em;
    padding-top: 20px;
  }
  .page-support .section-description {
    margin-bottom: 30px;
  }
  .page-support .faq-question h3 {
    font-size: 1em;
  }
  .page-support .faq-toggle {
    font-size: 1.2em;
  }
}