.page-faq {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A192F; /* Dark blue background */
  line-height: 1.6;
}

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A2E47 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700; /* Gold accent */
}

.page-faq__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-faq__highlight {
  color: #FFD700; /* Gold for highlight */
}

.page-faq__hero-description {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1em;
  border: none;
}

.page-faq__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
}

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

.page-faq__btn--secondary {
  background-color: #1A2E47; /* Slightly lighter dark blue */
  color: #FFD700; /* Gold text */
  border: 1px solid #FFD700;
  padding: 10px 20px;
}

.page-faq__btn--secondary:hover {
  background-color: #FFD700; /* Gold background on hover */
  color: #0A192F; /* Dark blue text on hover */
  transform: translateY(-2px);
}

.page-faq__categories {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-faq__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-faq__category-item {
  background-color: #1A2E47; /* Darker blue for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-faq__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-faq__category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-faq__category-desc {
  color: #B0B0B0;
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-faq__contact {
  padding: 80px 0;
  text-align: center;
  background-color: #0A192F;
  border-top: 2px solid #FFD700;
}

.page-faq__contact-desc {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__responsible-gaming {
  margin-top: 40px;
  font-size: 0.9em;
  color: #888;
}

.page-faq__link-inline {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-faq__link-inline:hover {
  color: #E0B300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-faq__hero-title {
    font-size: 2.5em;
  }
  .page-faq__hero-description,
  .page-faq__contact-desc {
    font-size: 1em;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-faq__hero {
    padding: 60px 0;
  }
  .page-faq__hero-title {
    font-size: 2em;
  }
  .page-faq__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-faq__categories,
  .page-faq__contact {
    padding: 40px 0;
  }
  .page-faq__category-item {
    padding: 20px;
  }
  .page-faq__category-title {
    font-size: 1.5em;
  }
}