.page-support {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #003366; /* Main brand color for hero background */
  color: #ffffff; /* Light text for dark background */
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a decent height */
}

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

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

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-support__button--primary {
  background-color: #FFD700; /* Gold accent */
  color: #003366; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

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

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

/* FAQs Section */
.page-support__faqs-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

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

.page-support__faq-question {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  position: relative;
  padding-right: 30px; /* Space for the icon */
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.2em;
  margin-left: 10px;
  transition: transform 0.3s ease;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.page-support__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg); /* No rotation needed for '-' */
}

.page-support__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
}

.page-support__faq-answer.active {
  max-height: 500px; /* Adjust based on content */
  padding-top: 15px;
}

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

.page-support__text-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.page-support__text-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-support__contact-card {
  background-color: #f0f8ff; /* Light blue background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-support__contact-icon {
  width: 200px; /* Min size for content images */
  height: 200px; /* Min size for content images */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__contact-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__contact-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

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

.page-support__button--outline:hover {
  background-color: #003366;
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

.page-support__guide-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
}

.page-support__guide-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, ensure it's >=200px */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-support__guide-card h3 {
  padding: 20px 20px 0;
  font-size: 1.5em;
  color: #003366;
  font-weight: bold;
}

.page-support__guide-card h3 a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__guide-card h3 a:hover {
  color: #FFD700;
}

.page-support__guide-text {
  padding: 10px 20px;
  font-size: 0.95em;
  color: #555555;
  flex-grow: 1; /* Allow text to grow */
}

.page-support__button--tertiary {
  background-color: #003366;
  color: #ffffff;
  border: 2px solid #003366;
  margin: 20px;
  padding: 10px 20px;
  font-size: 0.9em;
  align-self: flex-start; /* Align button to start */
}

.page-support__button--tertiary:hover {
  background-color: #FFD700;
  color: #003366;
  border-color: #FFD700;
}

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

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

.page-support__responsible-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__responsible-text {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.page-support__responsible-text p {
  margin-bottom: 15px;
  color: #333333;
}

.page-support__responsible-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-support__responsible-list li {
  margin-bottom: 8px;
}

/* Feedback Section */
.page-support__feedback-section {
  padding: 60px 0;
  text-align: center;
  background-color: #003366;
  color: #ffffff;
}

.page-support__feedback-section .page-support__section-title {
  color: #FFD700;
}

.page-support__feedback-section .page-support__section-description {
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .page-support__contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-support__guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-support__responsible-image,
  .page-support__responsible-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-support__hero-section {
    padding: 60px 0;
    min-height: 400px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 1em;
  }
  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__guide-grid {
    grid-template-columns: 1fr;
  }
  .page-support__responsible-content {
    flex-direction: column;
  }
  .page-support__responsible-image {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-icon,
  .page-support__guide-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
  /* Ensure all images within .page-support are responsive and not too small */
  .page-support img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Global minimum size for content images */
    min-height: 200px; /* Global minimum size for content images */
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__button {
    width: 90%;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__contact-title {
    font-size: 1.5em;
  }
}