.page-slots-theme-categories {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark gray for general text */
  line-height: 1.6;
}

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

.page-slots-theme-categories__hero {
  background: linear-gradient(135deg, #003366, #FFCC00); /* Deep blue to gold gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-slots-theme-categories__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-slots-theme-categories__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for subtitle */
}

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

.page-slots-theme-categories__btn--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Deep blue */
  border: 2px solid #FFCC00;
}

.page-slots-theme-categories__btn--primary:hover {
  background-color: #e6b800; /* Darker gold */
  color: #002244; /* Darker blue */
  transform: translateY(-2px);
}

.page-slots-theme-categories__btn--secondary {
  background-color: #003366; /* Deep blue */
  color: #FFCC00; /* Gold */
  border: 2px solid #FFCC00;
}

.page-slots-theme-categories__btn--secondary:hover {
  background-color: #002244; /* Darker blue */
  color: #ffdd33; /* Lighter gold */
  transform: translateY(-2px);
}

.page-slots-theme-categories__section {
  padding: 60px 0;
}

.page-slots-theme-categories__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-slots-theme-categories__heading {
  font-size: 2.5em;
  color: #003366; /* Deep blue */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slots-theme-categories__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-slots-theme-categories__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-slots-theme-categories__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-slots-theme-categories__text-content {
  flex: 1;
}

.page-slots-theme-categories__text-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #333333;
}

.page-slots-theme-categories__text-content ul {
  list-style: none;
  padding-left: 0;
}

.page-slots-theme-categories__text-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #333333;
}

.page-slots-theme-categories__text-content ul li::before {
  content: '✔';
  color: #FFCC00; /* Gold checkmark */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-slots-theme-categories__image-wrapper {
  flex: 1;
  text-align: center;
}

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

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

.page-slots-theme-categories__category-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-slots-theme-categories__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-slots-theme-categories__card-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slots-theme-categories__card-title {
  font-size: 1.6em;
  color: #003366; /* Deep blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-theme-categories__card-text {
  font-size: 1em;
  color: #555555;
}

.page-slots-theme-categories__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #003366;
  border-radius: 10px;
  color: #ffffff;
}

.page-slots-theme-categories__cta-bottom p {
  font-size: 1.4em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-slots-theme-categories__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-slots-theme-categories__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border: 1px solid #eee;
}

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

.page-slots-theme-categories__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots-theme-categories__feature-text {
  font-size: 1em;
  color: #555555;
}

.page-slots-theme-categories__list {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-slots-theme-categories__list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 50px;
  font-size: 1.05em;
  color: #333333;
}

.page-slots-theme-categories__list li::before {
  content: '✦';
  color: #FFCC00; /* Gold star */
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-slots-theme-categories__faq-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slots-theme-categories__faq-question {
  font-size: 1.3em;
  color: #003366; /* Deep blue */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots-theme-categories__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-slots-theme-categories__faq-answer a {
  color: #003366;
  text-decoration: underline;
}

.page-slots-theme-categories__faq-answer a:hover {
  color: #FFCC00;
}

.highlight-keyword {
  color: #003366;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-theme-categories__title {
    font-size: 2.5em;
  }
  .page-slots-theme-categories__heading {
    font-size: 2em;
  }
  .page-slots-theme-categories__content-wrapper {
    flex-direction: column;
  }
  .page-slots-theme-categories__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-slots-theme-categories__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-theme-categories__hero {
    padding: 60px 0;
  }
  .page-slots-theme-categories__title {
    font-size: 2em;
  }
  .page-slots-theme-categories__subtitle {
    font-size: 1.1em;
  }
  .page-slots-theme-categories__heading {
    font-size: 1.8em;
  }
  .page-slots-theme-categories__description {
    font-size: 0.95em;
  }
  .page-slots-theme-categories__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-theme-categories__section {
    padding: 40px 0;
  }
  .page-slots-theme-categories__card-title {
    font-size: 1.4em;
  }
  .page-slots-theme-categories__feature-title {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-slots-theme-categories__title {
    font-size: 1.8em;
  }
  .page-slots-theme-categories__subtitle {
    font-size: 1em;
  }
  .page-slots-theme-categories__heading {
    font-size: 1.5em;
  }
  .page-slots-theme-categories__grid, .page-slots-theme-categories__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-theme-categories__cta-bottom p {
    font-size: 1.2em;
  }
}