.page-support {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Explicitly set for content area */
}

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

.page-support__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #26A9E0, #a0d8f0); /* Gradient with main color */
  color: #FFFFFF;
  overflow: hidden;
}

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

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

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

.page-support__search-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-support__search-input {
  width: 60%;
  padding: 15px 20px;
  border: none;
  border-radius: 30px 0 0 30px;
  font-size: 1.1em;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__search-button {
  background-color: #EA7C07; /* Login color for contrast */
  color: #FFFFFF;
  border: none;
  padding: 15px 30px;
  border-radius: 0 30px 30px 0;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__search-button:hover {
  background-color: #d46f00;
}

.page-support__hero-cta-button {
  display: inline-block;
  background-color: #EA7C07; /* Login color for CTA */
  color: #FFFFFF;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.page-support__hero-cta-button:hover {
  background-color: #d46f00;
  transform: translateY(-3px);
}

.page-support__faq-section,
.page-support__guides-section,
.page-support__contact-section,
.page-support__responsible-gaming-section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__faq-section {
  background-color: #f9f9f9;
}

.page-support__guides-section {
  background-color: #eaf7fc; /* Lighter shade of main color */
}

.page-support__contact-section {
  background-color: #f9f9f9;
}

.page-support__responsible-gaming-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-support__section-title {
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #26A9E0;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

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

.page-support__faq-image,
.page-support__contact-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.1;
}

.page-support__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-support__faq-card,
.page-support__guide-card,
.page-support__contact-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__faq-card:hover,
.page-support__guide-card:hover,
.page-support__contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-support__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: bold;
}

.page-support__card-title .page-support__card-link {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__card-title .page-support__card-link:hover {
  color: #1b769d;
}

.page-support__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-support__more-faq-link,
.page-support__more-guides-link {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.page-support__more-faq-link:hover,
.page-support__more-guides-link:hover {
  background-color: #1b769d;
}

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

.page-support__guide-card {
  text-align: center;
}

.page-support__guide-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-support__contact-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #555555;
  position: relative;
  z-index: 1;
}

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.page-support__contact-card h3 {
  color: #26A9E0;
}

.page-support__contact-card p {
  color: #555555;
  flex-grow: 1;
}

.page-support__contact-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.page-support__contact-button:hover {
  background-color: #1b769d;
}

.page-support__responsible-gaming-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  position: relative;
  z-index: 1;
}

.page-support__responsible-gaming-link {
  display: inline-block;
  background-color: #FFFFFF;
  color: #26A9E0;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.page-support__responsible-gaming-link:hover {
  background-color: #e0e0e0;
  color: #1b769d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__search-input {
    width: 80%;
    border-radius: 30px 0 0 30px;
  }
  .page-support__search-button {
    padding: 15px 20px;
  }
  .page-support__faq-grid,
  .page-support__guides-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__section-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__search-bar {
    flex-direction: column;
    align-items: center;
  }
  .page-support__search-input {
    width: 90%;
    border-radius: 30px;
    margin-bottom: 15px;
    text-align: center;
  }
  .page-support__search-button {
    width: 90%;
    border-radius: 30px;
  }
  .page-support__hero-cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
}