.page-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1F46B5 100%); /* Deep blue to a slightly lighter blue for gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-faq__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-faq__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-faq__highlight {
  color: #E0B94A; /* Gold accent for keywords */
}

.page-faq__btn-primary {
  display: inline-block;
  background-color: #E0B94A; /* Gold */
  color: #0A2463; /* Deep blue */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #E0B94A;
}

.page-faq__btn-primary:hover {
  background-color: #f5db9c; /* Lighter gold on hover */
  transform: translateY(-2px);
}

.page-faq__btn-secondary {
  display: inline-block;
  background-color: #0A2463; /* Deep blue */
  color: #E0B94A; /* Gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #E0B94A;
  margin-left: 15px; /* For spacing when used with primary button */
}

.page-faq__btn-secondary:hover {
  background-color: #1f46b5; /* Lighter blue on hover */
  transform: translateY(-2px);
}

.page-faq__section-heading {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-faq__text {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-faq__general-info, .page-faq__categories, .page-faq__contact-cta, .page-faq__responsible-gambling {
  padding: 60px 0;
}

.page-faq__general-info .page-faq__container, .page-faq__contact-cta .page-faq__container, .page-faq__responsible-gambling .page-faq__container {
    max-width: 900px;
}

.page-faq__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-faq__image-full {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-faq__cta-box {
  background-color: #0A2463;
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
}

.page-faq__cta-title {
  font-size: 2em;
  color: #E0B94A;
  margin-bottom: 15px;
}

.page-faq__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-faq__category-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #E0B94A;
}

.page-faq__category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-faq__category-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-faq__category-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-faq__category-title a:hover {
  color: #E0B94A;
}

.page-faq__category-description {
  color: #555;
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-faq__btn-link {
  display: inline-flex;
  align-items: center;
  color: #E0B94A;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-faq__btn-link:hover {
  color: #0A2463;
}

.page-faq__btn-link span {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.page-faq__btn-link:hover span {
  margin-left: 10px;
}

.page-faq__contact-cta {
  text-align: center;
  background-color: #f0f2f5;
}

.page-faq__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-faq__responsible-gambling {
  background-color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-faq__title {
    font-size: 2.5em;
  }

  .page-faq__subtitle {
    font-size: 1.2em;
  }

  .page-faq__section-heading {
    font-size: 2em;
  }

  .page-faq__text, .page-faq__cta-text, .page-faq__category-description {
    font-size: 1em;
  }

  .page-faq__btn-primary, .page-faq__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-faq__btn-primary, .page-faq__btn-secondary {
    margin-left: 0; /* Remove margin for stacked buttons */
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-faq__title {
    font-size: 2em;
  }

  .page-faq__subtitle {
    font-size: 1em;
  }

  .page-faq__section-heading {
    font-size: 1.8em;
  }

  .page-faq__category-item {
    padding: 20px;
  }

  .page-faq__cta-box {
    padding: 30px 20px;
  }
}