/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F8F9FA;
}

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

.page-support__highlight {
  color: #FFD700;
}

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-support__btn--primary {
  background-color: #FFD700;
  color: #1A2E44;
  border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
  background-color: #e6c200;
  color: #1A2E44;
}

.page-support__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-support__btn--center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 300px;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* Hero Section */
.page-support__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c82 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-support__hero-image {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.page-support__hero .page-support__container {
  position: relative;
  z-index: 1;
}

/* FAQ Section */
.page-support__faq {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.page-support__faq-question {
  background-color: #f2f2f2;
  color: #1A2E44;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #e0e0e0;
}

.page-support__faq-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  filter: invert(10%) sepia(20%) saturate(1000%) hue-rotate(190deg) brightness(90%) contrast(90%); /* Darkens icon to match text */
}

.page-support__faq-answer {
  padding: 0 25px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #555;
}

.page-support__faq-answer p {
  margin-bottom: 10px;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-support__faq-link {
  color: #1A2E44;
  text-decoration: underline;
  font-weight: bold;
}

.page-support__faq-link:hover {
  color: #FFD700;
}

/* Contact Methods Section */
.page-support__contact-methods {
  padding: 60px 0;
  background-color: #F0F2F5;
}

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

.page-support__contact-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(10%) sepia(20%) saturate(1000%) hue-rotate(190deg) brightness(90%) contrast(90%); /* Darkens icon to match text */
}

.page-support__contact-title {
  font-size: 1.8em;
  color: #1A2E44;
  margin-bottom: 15px;
}

.page-support__contact-text {
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Guides Section */
.page-support__guides {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-support__guides-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-support__guides-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-support__guides-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-support__guides-list li {
  margin-bottom: 15px;
}

.page-support__guide-link {
  font-size: 1.2em;
  color: #1A2E44;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: block;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}

.page-support__guide-link:hover {
  color: #FFD700;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming {
  padding: 60px 0;
  background-color: #1A2E44;
  color: #FFFFFF;
}

.page-support__responsible-gaming .page-support__section-title {
  color: #FFFFFF;
}

.page-support__responsible-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-support__responsible-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  filter: invert(90%) sepia(20%) saturate(1000%) hue-rotate(300deg) brightness(120%) contrast(90%); /* Lightens icon to match text */
}

.page-support__responsible-text {
  font-size: 1.1em;
  line-height: 1.8;
}

/* CTA Section */
.page-support__cta {
  background-color: #FFD700;
  color: #1A2E44;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-buttons .page-support__btn {
  margin: 0 10px;
}

.page-support__cta-image {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 250px;
  height: auto;
  opacity: 0.15;
  transform: rotate(-15deg);
  z-index: 0;
}

.page-support__cta .page-support__container {
  position: relative;
  z-index: 1;
}

/* 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__guides-content {
    flex-direction: column;
  }
  .page-support__guides-image {
    max-width: 80%;
  }
  .page-support__responsible-content {
    flex-direction: column;
    text-align: center;
  }
  .page-support__responsible-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-support__hero {
    padding: 60px 0;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__contact-grid {
    grid-template-columns: 1fr;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-support__cta-buttons .page-support__btn {
    margin: 0;
  }
  .page-support__hero-image-wrapper {
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 18px;
  }
  .page-support__contact-item {
    padding: 20px;
  }
  .page-support__contact-title {
    font-size: 1.5em;
  }
  .page-support__guides-image {
    max-width: 100%;
  }
  .page-support__guide-link {
    font-size: 1em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
}