.page-support {
  color: #333333; /* Default text color for light background */
}

.page-support__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-support__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

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

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-support__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-support__button--primary {
  background-color: #E3B505;
  color: #0A2463;
  border: 2px solid #E3B505;
}

.page-support__button--primary:hover {
  background-color: #f5c407;
  transform: translateY(-2px);
}

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

.page-support__button--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-2px);
}

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

.page-support__section-title {
  font-size: 2.8em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-support__faq-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  position: relative;
}

.page-support__faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.page-support__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #E3B505;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-answer {
  font-size: 1.05em;
  color: #666666;
  line-height: 1.7;
  display: none;
  padding-top: 10px;
}

.page-support__faq-answer.active {
  display: block;
}

.page-support__faq-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__contact-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

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

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

.page-support__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-support__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.page-support__contact-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 60px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__responsible-gaming-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

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

.page-support__responsible-gaming-section .page-support__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-support__button--outline {
  background-color: transparent;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-support__button--outline:hover {
  background-color: #E3B505;
  color: #0A2463;
}

.page-support__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2463 0%, #1a3a70 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-support__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-support__cta-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 60px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2.4em;
  }
  .page-support__cta-title {
    font-size: 2.6em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 15px 50px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
    max-width: 300px;
  }
  .page-support__container {
    padding: 30px 15px;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-intro {
    font-size: 0.95em;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__faq-answer {
    font-size: 0.9em;
  }
  .page-support__contact-options {
    grid-template-columns: 1fr;
  }
  .page-support__card-title {
    font-size: 1.6em;
  }
  .page-support__cta-title {
    font-size: 2.2em;
  }
  .page-support__cta-description {
    font-size: 1.1em;
  }

  /* Mobile content image overflow prevention */
  .page-support__hero-image,
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__cta-image {
    max-width: 100%;
    height: auto;
  }
  .page-support {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
}

/* Ensure content images are not smaller than 200px */
.page-support img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon):not(.shared-footer__game-provider-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* Override for specific small images if necessary, but keep above 200px for content */
.page-support__hero-image {
  width: 100%;
  height: auto; /* Allow auto height based on aspect ratio */
}

.page-support__faq-image {
  width: 800px; /* Example, use appropriate size */
  height: 600px; /* Example */
}

.page-support__contact-image {
  width: 1000px; /* Example */
  height: 750px; /* Example */
}

.page-support__cta-image {
  width: 1200px; /* Example */
  height: 675px; /* Example */
}

/* No filter properties for images */
.page-support img {
  filter: none;
}