/* style/index-core-services.css */
.page-index-core-services {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A2A40; /* Main dark blue background */
  line-height: 1.6;
}

.page-index-core-services__hero {
  background: linear-gradient(135deg, #1A2A40, #3A4A60);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-index-core-services__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-index-core-services__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary gold for highlight */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-core-services__hero-subtitle {
  font-size: 1.4em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-index-core-services__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-core-services__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-index-core-services__button--primary {
  background-color: #FFD700; /* Auxiliary gold */
  color: #1A2A40; /* Dark blue for text on gold */
  border: 2px solid #FFD700;
}

.page-index-core-services__button--primary:hover {
  background-color: #E0B800;
  border-color: #E0B800;
  transform: translateY(-3px);
}

.page-index-core-services__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-core-services__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2A40;
  transform: translateY(-3px);
}

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

.page-index-core-services__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index-core-services__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-core-services__section:nth-of-type(even) {
  background-color: #2A3A50; /* Slightly lighter dark blue for contrast */
}

.page-index-core-services__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary gold */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-core-services__text {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: left;
}

.page-index-core-services__intro .page-index-core-services__text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-core-services__service-grid, .page-index-core-services__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-core-services__service-item, .page-index-core-services__benefit-item {
  background-color: #2F4050; /* Another dark blue shade */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-services__service-item:hover, .page-index-core-services__benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index-core-services__service-icon, .page-index-core-services__benefit-icon, .page-index-core-services__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-core-services__service-title, .page-index-core-services__benefit-title, .page-index-core-services__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-core-services__cta {
  background: linear-gradient(90deg, #FFD700, #E0B800);
  color: #1A2A40;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 60px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-core-services__cta-title {
  font-size: 3em;
  color: #1A2A40;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-core-services__cta .page-index-core-services__text {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-index-core-services__button--cta {
  background-color: #1A2A40;
  color: #FFD700;
  border: 2px solid #1A2A40;
  padding: 18px 35px;
  font-size: 1.2em;
  margin-right: 15px;
}

.page-index-core-services__button--cta:hover {
  background-color: #3A4A60;
  border-color: #3A4A60;
  color: #FFD700;
}

.page-index-core-services__button--cta-secondary {
  background-color: transparent;
  color: #1A2A40;
  border: 2px solid #1A2A40;
  padding: 18px 35px;
  font-size: 1.2em;
  margin-left: 15px;
}

.page-index-core-services__button--cta-secondary:hover {
  background-color: #1A2A40;
  color: #FFD700;
}

.page-index-core-services__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-core-services__step-item {
  background-color: #2F4050;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-services__step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index-core-services__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
  background-color: #FFD700;
  color: #1A2A40;
  border: none;
  border-radius: 5px;
}

.page-index-core-services__button--small:hover {
  background-color: #E0B800;
}

.page-index-core-services__responsible-gaming .page-index-core-services__text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-core-services__faq-item {
  background-color: #2F4050;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
}

.page-index-core-services__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-core-services__faq-item .page-index-core-services__text {
  font-size: 1em;
  color: #C0C0C0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-core-services__hero-title {
    font-size: 2.8em;
  }
  .page-index-core-services__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-core-services__section-title {
    font-size: 2.2em;
  }
  .page-index-core-services__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-core-services__hero {
    padding: 80px 15px;
  }
  .page-index-core-services__hero-title {
    font-size: 2.2em;
  }
  .page-index-core-services__hero-subtitle {
    font-size: 1em;
  }
  .page-index-core-services__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-core-services__button {
    width: 100%;
  }
  .page-index-core-services__section {
    padding: 60px 15px;
  }
  .page-index-core-services__section-title {
    font-size: 1.8em;
  }
  .page-index-core-services__text {
    font-size: 0.95em;
  }
  .page-index-core-services__service-grid, .page-index-core-services__benefits-grid, .page-index-core-services__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-index-core-services__cta {
    padding: 60px 15px;
  }
  .page-index-core-services__cta-title {
    font-size: 2em;
  }
  .page-index-core-services__button--cta, .page-index-core-services__button--cta-secondary {
    width: 100%;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-index-core-services__hero-title {
    font-size: 1.8em;
  }
  .page-index-core-services__section-title {
    font-size: 1.6em;
  }
  .page-index-core-services__cta-title {
    font-size: 1.8em;
  }
  .page-index-core-services__service-title, .page-index-core-services__benefit-title, .page-index-core-services__step-title {
    font-size: 1.5em;
  }
  .page-index-core-services__faq-question {
    font-size: 1.2em;
  }
}