.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #ffffff); /* Inherit from shared or default to white */
}

.page-support__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Increased height for visual impact */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

.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(0, 0, 0, 0.6); /* Darker overlay for text readability */
  z-index: 2;
}

.page-support__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

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

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-support__dark-section .page-support__section-title,
.page-support__dark-section .page-support__section-intro {
  color: #ffffff;
}

.page-support__channels-section,
.page-support__faq-section,
.page-support__guides-section,
.page-support__responsible-gambling-section,
.page-support__why-choose-section,
.page-support__cta-final-section {
  padding: 80px 0;
}

.page-support__dark-section {
  background-color: #26A9E0; /* Brand main color */
  color: #ffffff;
}

.page-support__light-bg {
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333;
}

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

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

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

.page-support__dark-section .page-support__channel-card {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__channel-card:hover,
.page-support__advantage-card:hover,
.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-support__channel-icon {
  width: 200px; /* Minimum size */
  height: auto;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__channel-title,
.page-support__advantage-title,
.page-support__guide-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #26A9E0;
}

.page-support__dark-section .page-support__channel-title {
  color: #ffffff;
}

.page-support__channel-description,
.page-support__advantage-description,
.page-support__guide-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-support__dark-section .page-support__channel-description {
  color: #f0f0f0;
}

.page-support__channel-info {
  margin-top: 15px;
  font-size: 1.1em;
  font-weight: bold;
  color: #26A9E0;
}

.page-support__dark-section .page-support__channel-info {
  color: #ffffff;
}

.page-support__email-link,
.page-support__phone-link,
.page-support__link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__dark-section .page-support__email-link,
.page-support__dark-section .page-support__phone-link,
.page-support__dark-section .page-support__link {
  color: #ffffff;
}

.page-support__email-link:hover,
.page-support__phone-link:hover,
.page-support__link:hover {
  color: #EA7C07; /* Login color for hover */
  text-decoration: underline;
}

/* FAQ Section */
.page-support__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f0f0f0; /* Slightly darker background for question */
  transition: background-color 0.3s ease;
}

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

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

.page-support__faq-item.active .page-support__faq-toggle {
  transform: rotate(0deg); /* No rotation for minus sign */
}

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

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 1em;
}

.page-support__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Responsible Gambling Section */
.page-support__responsible-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-support__text-block {
  flex: 1;
  min-width: 300px;
  color: #ffffff;
}

.page-support__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-support__feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-support__feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-support__feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #EA7C07; /* Login color for checkmark */
  font-weight: bold;
}

.page-support__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-support__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* CTA Buttons */
.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  text-align: center;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

.page-support__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-support__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-support__cta-final-section .page-support__section-title,
.page-support__cta-final-section .page-support__section-intro {
  color: #ffffff;
}

.page-support__cta-buttons-wrapper {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Global image rules for content area */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__channel-title,
  .page-support__advantage-title,
  .page-support__guide-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile specific header offset */
  }

  .page-support__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-support__section-intro {
    font-size: 1em;
  }

  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__responsible-gambling-section,
  .page-support__why-choose-section,
  .page-support__cta-final-section {
    padding: 50px 0;
  }

  .page-support__channels-grid,
  .page-support__advantages-grid,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

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

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

  .page-support__text-block,
  .page-support__image-block {
    min-width: unset;
    width: 100%;
  }

  .page-support__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 !important;
    padding: 15px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__cta-buttons-wrapper {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  /* Mandatory image responsiveness */
  .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,
  .page-support__hero-section,
  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__responsible-gambling-section,
  .page-support__why-choose-section,
  .page-support__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure content area images are not too small */
  .page-support__channel-icon,
  .page-support__responsive-image {
    min-width: 200px !important; /* Enforce minimum size */
    min-height: 200px !important;
  }
}

/* Color Contrast Fixes (if needed) */
.page-support__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-support__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}