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

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

.page-index-core-offerings__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-core-offerings__section:nth-of-type(even) {
  background-color: #e6e6e6;
}

.page-index-core-offerings__section-title {
  font-size: 2.5em;
  color: #000080; /* Dark Blue */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-index-core-offerings__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold */
  border-radius: 2px;
}

.page-index-core-offerings__subsection-title {
  font-size: 1.8em;
  color: #000080; /* Dark Blue */
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: left;
}

.page-index-core-offerings__text {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: left;
}

/* Hero Section */
.page-index-core-offerings__hero {
  background: linear-gradient(135deg, #000080 0%, #000040 100%); /* Dark Blue gradient */
  color: #fff;
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-index-core-offerings__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
  z-index: 1;
}

.page-index-core-offerings__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold */
}

.page-index-core-offerings__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-core-offerings__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.page-index-core-offerings__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-index-core-offerings__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  border: 2px solid #FFD700;
}

.page-index-core-offerings__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-core-offerings__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-index-core-offerings__btn--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-index-core-offerings__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-index-core-offerings__btn--app {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #000080;
  color: #FFD700;
  border: 2px solid #000080;
  padding: 12px 25px;
}

.page-index-core-offerings__btn--app:hover {
  background-color: #FFD700;
  color: #000080;
  border-color: #FFD700;
}

.page-index-core-offerings__app-icon {
  width: 24px;
  height: 24px;
}

/* Features Grid */
.page-index-core-offerings__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-core-offerings__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-core-offerings__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-index-core-offerings__feature-title {
  font-size: 1.5em;
  color: #000080; /* Dark Blue */
  margin-bottom: 15px;
}

.page-index-core-offerings__feature-description {
  font-size: 1em;
  color: #555;
  text-align: center;
}

/* CTA Banner */
.page-index-core-offerings__cta-banner {
  background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  color: #000080; /* Dark Blue */
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-index-core-offerings__cta-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
  text-align: left;
  z-index: 1;
}

.page-index-core-offerings__cta-title {
  font-size: 2.8em;
  color: #000080; /* Dark Blue */
  margin-bottom: 20px;
}

.page-index-core-offerings__cta-text {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 30px;
}

.page-index-core-offerings__cta-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Download Section */
.page-index-core-offerings__download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-index-core-offerings__download-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

.page-index-core-offerings__download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.page-index-core-offerings__download-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-core-offerings__download-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.page-index-core-offerings__contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: #555;
}

.page-index-core-offerings__contact-info p {
  margin-bottom: 10px;
}

.page-index-core-offerings__contact-link {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-core-offerings__contact-link:hover {
  color: #FFD700;
}

/* Responsible Gaming Section */
.page-index-core-offerings__responsible-gaming .page-index-core-offerings__text {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-core-offerings__hero-title {
    font-size: 2.8em;
  }
  .page-index-core-offerings__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-core-offerings__hero, .page-index-core-offerings__cta-banner, .page-index-core-offerings__download {
    flex-direction: column;
    text-align: center;
  }
  .page-index-core-offerings__hero-content, .page-index-core-offerings__cta-content, .page-index-core-offerings__download-content {
    max-width: 100%;
    text-align: center;
  }
  .page-index-core-offerings__section-title {
    font-size: 2em;
  }
  .page-index-core-offerings__subsection-title {
    text-align: center;
  }
  .page-index-core-offerings__text {
    text-align: center;
  }
  .page-index-core-offerings__cta-image, .page-index-core-offerings__hero-image, .page-index-core-offerings__download-image {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-index-core-offerings__hero-title {
    font-size: 2.2em;
  }
  .page-index-core-offerings__section-title {
    font-size: 1.8em;
  }
  .page-index-core-offerings__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-core-offerings__download-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-index-core-offerings__hero-title {
    font-size: 1.8em;
  }
  .page-index-core-offerings__section-title {
    font-size: 1.5em;
  }
  .page-index-core-offerings__btn {
    width: 100%;
    margin: 10px 0;
  }
  .page-index-core-offerings__hero-content, .page-index-core-offerings__cta-content, .page-index-core-offerings__download-content {
    padding: 15px;
  }
}