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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the background image */
  z-index: 0;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

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

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

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

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

.page-support__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

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

.page-support__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-support__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

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

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

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

.page-support__faq-category-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

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

.page-support__faq-question {
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.15em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  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(180deg);
}

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

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

.page-support__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 20px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555555;
}

.page-support__inline-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-support__inline-link:hover {
  text-decoration: underline;
}

.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;
  margin-top: 40px;
}

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

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

.page-support__contact-icon {
  width: 80px; /* Ensuring minimum size for content images */
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum display size for content images */
  min-height: 200px; /* Minimum display size for content images */
}

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

.page-support__contact-card-description {
  color: #555555;
  margin-bottom: 25px;
  line-height: 1.5;
}

.page-support__button--livechat, 
.page-support__button--email, 
.page-support__button--phone {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
}

.page-support__button--livechat:hover, 
.page-support__button--email:hover, 
.page-support__button--phone:hover {
  background-color: #e6a83a;
}

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

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

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

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

.page-support__guide-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  min-width: 200px; /* Minimum display size for content images */
  min-height: 200px; /* Minimum display size for content images */
}

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

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

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

.page-support__guide-description {
  padding: 10px 25px;
  color: #555555;
  line-height: 1.5;
}

.page-support__button--readmore {
  display: block;
  width: calc(100% - 50px);
  margin: 20px 25px 25px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 0;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-support__feedback-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-support__feedback-form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-support__form-group {
  margin-bottom: 20px;
}

.page-support__form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #000000;
}

.page-support__form-input,
.page-support__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  color: #333333;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

.page-support__form-input::placeholder,
.page-support__form-textarea::placeholder {
  color: #999999;
}

.page-support__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-support__button--submit {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__responsible-gaming-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 0;
}

.page-support__responsible-gaming-section .page-support__section-title,
.page-support__responsible-gaming-section .page-support__section-intro {
  color: #FFFFFF;
}

.page-support__responsible-gaming-section .page-support__section-title::after {
  background-color: #FCBC45;
}

.page-support__responsible-gaming-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1em;
}

.page-support__responsible-gaming-content p {
  margin-bottom: 20px;
}

.page-support__responsible-gaming-list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
}

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

.page-support__button--responsible-gaming {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-support__button--responsible-gaming:hover {
  background-color: #e6a83a;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__hero-description {
    font-size: 1.2em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__contact-icon {
    width: 60px;
    height: 60px;
    min-width: 200px; /* Ensure images remain large enough */
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 1em;
  }
  .page-support__faq-category-title {
    font-size: 1.5em;
  }
  .page-support__contact-methods, .page-support__guides-grid {
    grid-template-columns: 1fr;
  }
  .page-support__contact-card, .page-support__guide-card {
    padding: 25px;
  }
  .page-support__guide-image {
    height: 200px;
    min-width: 200px; /* Ensure images remain large enough */
    min-height: 200px;
  }
  /* CRITICAL: Mobile content images must not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__hero-section {
    max-width: 100%;
    overflow-x: hidden;
  }
  .page-support__container {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 0 20px;
  }
  .page-support__faq-answer.active {
    padding: 10px 20px 15px 20px;
  }
  .page-support__form-group {
    margin-bottom: 15px;
  }
  .page-support__button--submit {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__responsible-gaming-list {
    margin-left: 20px;
  }
}