/* style/support.css */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-support__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-support__hero .page-support__container {
  position: relative;
  z-index: 1;
}

.page-support__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Golden yellow for emphasis */
  font-weight: bold;
}

.page-support__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__subtitle {
  font-size: 2.5em;
  color: #003366; /* Dark blue for headings */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-support__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #444;
}

.page-support__btn {
  display: inline-block;
  background-color: #FFCC00; /* Golden yellow for buttons */
  color: #003366; /* Dark blue text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-support__btn:hover {
  background-color: #e6b800; /* Slightly darker yellow on hover */
  color: #002244; /* Slightly darker blue on hover */
}

.page-support__btn--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-support__btn--primary:hover {
  background-color: #e6b800;
  color: #002244;
}

.page-support__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-support__btn--secondary:hover {
  background-color: #002244;
  color: #e6b800;
  border-color: #e6b800;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__responsible-gaming-section,
.page-support__cta-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__faq-section {
  background-color: #f0f4f8;
  position: relative;
  overflow: hidden;
}

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

.page-support__faq-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 5px solid #003366;
}

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

.page-support__faq-question {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-support__faq-answer {
  color: #555;
  line-height: 1.7;
}

.page-support__faq-image {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: auto;
  opacity: 0.1;
  z-index: 0;
}

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

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

.page-support__method-item {
  text-align: center;
  padding: 30px;
  background-color: #f0f4f8;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-support__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-support__method-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-support__method-description {
  color: #666;
  margin-bottom: 20px;
}

.page-support__contact-image {
  display: block;
  margin: 50px auto 0 auto;
  max-width: 100%;
  height: auto;
  opacity: 0.8;
}

.page-support__responsible-gaming-section {
  background-color: #f0f4f8;
  position: relative;
  overflow: hidden;
}

.page-support__responsible-gaming-image {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 180px;
  height: auto;
  opacity: 0.1;
  z-index: 0;
}

.page-support__responsible-gaming-section .page-support__container {
  position: relative;
  z-index: 1;
}

.page-support__cta-section {
  background-color: #003366; /* Dark blue background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-support__cta-section .page-support__subtitle,
.page-support__cta-section .page-support__text {
  color: #ffffff;
}

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

.page-support__cta-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: auto;
  opacity: 0.1;
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__title {
    font-size: 2.5em;
  }
  .page-support__subtitle {
    font-size: 2em;
  }
  .page-support__description,
  .page-support__text {
    font-size: 1em;
  }
  .page-support__faq-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__hero,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__responsible-gaming-section,
  .page-support__cta-section {
    padding: 40px 0;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-support__title {
    font-size: 2em;
  }
  .page-support__subtitle {
    font-size: 1.8em;
  }
  .page-support__btn {
    width: 100%;
    box-sizing: border-box;
  }
  .page-support__cta-buttons {
    gap: 15px;
  }
}