.page-support {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #000000; /* Black for titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0; /* Light background for hero section */
  padding-bottom: 60px;
}

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

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

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

.page-support__hero-description {
  font-size: 1.3em;
  color: #333333;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

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

.page-support__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #FFFFFF; /* White text */
  border-color: #FCBC45;
}

.page-support__button--primary:hover {
  background-color: #e0a030;
  border-color: #e0a030;
}

.page-support__button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  border-color: #000000;
}

.page-support__button--secondary:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-support__button--tertiary {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

.page-support__button--tertiary:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-support__why-choose-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

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

.page-support__feature-icon {
  width: 250px; /* Minimum 200px */
  height: 187px; /* Maintain aspect ratio for 800x600 */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-support__feature-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-support__feature-text {
  font-size: 1em;
  color: #555555;
}

.page-support__faq-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-support__faq-category {
  margin-bottom: 40px;
}

.page-support__faq-category-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-support__faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #FFFFFF;
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

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

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

.page-support__faq-answer.open {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 10px;
}

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

.page-support__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

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

.page-support__contact-icon {
  width: 250px; /* Minimum 200px */
  height: 187px; /* Maintain aspect ratio for 800x600 */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}

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

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

.page-support__guides-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-support__guide-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-support__guide-image {
  width: 250px; /* Minimum 200px */
  height: 187px; /* Maintain aspect ratio for 800x600 */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-support__guide-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-support__guide-title a {
  color: #000000;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  text-decoration: underline;
  color: #FCBC45;
}

.page-support__guide-text {
  font-size: 0.95em;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-support__responsible-gaming-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-support__responsible-gaming-text {
  font-size: 1.1em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
  .page-support__feature-icon, .page-support__contact-icon, .page-support__guide-image {
    width: 220px;
    height: 165px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description,
  .page-support__section-description,
  .page-support__responsible-gaming-text {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__faq-category-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__hero-buttons, .page-support__responsible-gaming-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    max-width: 300px;
  }
  .page-support__feature-icon, .page-support__contact-icon, .page-support__guide-image {
    width: 100%; /* Ensure images don't overflow */
    max-width: 300px; /* Example max-width, adjust as needed */
    height: auto; /* Maintain aspect ratio */
  }
  .page-support__feature-card, .page-support__contact-option, .page-support__guide-card {
    padding: 20px;
  }
  /* Ensure all images within .page-support do not cause horizontal scroll */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-support__feature-title, .page-support__contact-title, .page-support__guide-title {
    font-size: 1.5em;
  }
}