.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Assuming body background is black */
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  background-color: #003366; /* Primary brand color */
}

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

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Secondary brand color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__channel-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, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-support__btn-primary {
  background-color: #FFCC00; /* Secondary brand color */
  color: #003366; /* Primary brand color for text */
  border: 2px solid #FFCC00;
}

.page-support__btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

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

.page-support__btn-secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-support__channels-section,
.page-support__guides-section,
.page-support__contact-cta-section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Dark background for content sections */
  color: #ffffff;
}

.page-support__dark-section {
  background-color: #003366;
  color: #ffffff;
}

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

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

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

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

.page-support__channel-card,
.page-support__guide-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.page-support__channel-icon,
.page-support__guide-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Max width for consistent look */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-support__channel-title,
.page-support__guide-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFCC00;
}

.page-support__channel-title a,
.page-support__guide-title a {
  color: #FFCC00;
  text-decoration: none;
}

.page-support__channel-title a:hover,
.page-support__guide-title a:hover {
  text-decoration: underline;
}

.page-support__channel-text,
.page-support__guide-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__faq-section {
  padding: 60px 20px;
  background-color: #003366;
  color: #ffffff;
}

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

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #003366;
  color: #FFCC00;
  transition: background-color 0.3s ease;
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-toggle {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 20px;
}

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

.page-support__responsible-gambling-section {
  padding: 60px 20px;
  background-color: #003366;
  color: #ffffff;
}

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

.page-support__responsible-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-support__responsible-text {
  max-width: 700px;
  text-align: center;
}

.page-support__responsible-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-support__contact-cta-section {
  padding: 60px 20px;
  background-color: #1a1a1a;
  text-align: center;
  color: #ffffff;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-support__responsible-content {
    flex-direction: row;
    text-align: left;
  }

  .page-support__responsible-image {
    flex: 1;
    max-width: 50%;
  }

  .page-support__responsible-text {
    flex: 1;
    text-align: left;
  }
}

@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 2.8em;
  }

  .page-support__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-support__main-title {
    font-size: 2em;
  }

  .page-support__hero-description {
    font-size: 1em;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__channel-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__channels-section,
  .page-support__guides-section,
  .page-support__faq-section,
  .page-support__responsible-gambling-section,
  .page-support__contact-cta-section {
    padding: 40px 15px;
  }

  .page-support__section-title {
    font-size: 1.8em;
  }

  .page-support__section-description {
    font-size: 0.95em;
  }

  .page-support__channels-grid,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
  }

  .page-support__channel-card,
  .page-support__guide-card {
    padding: 25px;
  }

  .page-support__channel-icon,
  .page-support__guide-image,
  .page-support__responsible-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-support__channel-title,
  .page-support__guide-title {
    font-size: 1.3em;
  }

  .page-support__faq-question {
    padding: 15px;
    font-size: 1.1em;
  }

  .page-support__faq-answer {
    padding: 0 15px;
  }

  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px;
  }

  .page-support__responsible-content {
    flex-direction: column;
  }

  .page-support__responsible-text {
    text-align: center;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__section,
  .page-support__card,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}