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

.page-index-core-services__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a455a 100%); /* Darker gradient */
  color: #FFFFFF;
  gap: 40px;
}

.page-index-core-services__hero-content {
  max-width: 800px;
}

.page-index-core-services__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

.page-index-core-services__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E5E5E5;
}

.page-index-core-services__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold CTA button */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-core-services__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-index-core-services__hero-image-container {
  width: 100%;
  max-width: 700px;
  margin-top: 30px;
}

.page-index-core-services__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.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: #28303f; /* Slightly lighter dark background for contrast */
}

.page-index-core-services__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-core-services__section-description {
  font-size: 1.1em;
  color: #C0C0C0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-index-core-services__feature-item,
.page-index-core-services__promo-card {
  background-color: #28303f; /* Dark background for cards */
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-core-services__feature-item:hover,
.page-index-core-services__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

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

.page-index-core-services__feature-title,
.page-index-core-services__promo-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-core-services__feature-text,
.page-index-core-services__promo-text {
  font-size: 1em;
  color: #C0C0C0;
}

.page-index-core-services__button,
.page-index-core-services__promo-button {
  display: inline-block;
  background-color: #4CAF50; /* Green accent for action buttons */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.page-index-core-services__button:hover,
.page-index-core-services__promo-button:hover {
  background-color: #45a049;
}

.page-index-core-services__promo-image {
  width: 100%;
  height: 180px; /* Fixed height for promo images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-core-services__strategy-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-index-core-services__strategy-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}

.page-index-core-services__strategy-text h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-core-services__strategy-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-core-services__strategy-text li {
  background-color: #28303f;
  margin-bottom: 10px;
  padding: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E5E5E5;
}

.page-index-core-services__strategy-text li b {
  color: #FFD700;
}

.page-index-core-services__strategy-text p {
  color: #C0C0C0;
  font-size: 1.1em;
}

.page-index-core-services__cta {
  background-color: #1A202C;
  padding: 100px 20px;
  border-top: 5px solid #FFD700;
}

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

.page-index-core-services__cta-description {
  color: #E5E5E5;
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-core-services__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold CTA button */
  color: #1A202C;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  margin: 0 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-core-services__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-index-core-services__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-index-core-services__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    gap: 60px;
  }

  .page-index-core-services__hero-content {
    flex: 1;
    text-align: left;
  }

  .page-index-core-services__hero-image-container {
    flex: 1;
    margin-top: 0;
  }

  .page-index-core-services__strategy-content {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .page-index-core-services__strategy-image {
    flex: 1;
    margin-right: 40px;
  }

  .page-index-core-services__strategy-text {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .page-index-core-services__hero-title {
    font-size: 2.2em;
  }

  .page-index-core-services__section-title {
    font-size: 2em;
  }

  .page-index-core-services__cta-title {
    font-size: 2.5em;
  }

  .page-index-core-services__hero-button,
  .page-index-core-services__cta-button {
    padding: 12px 25px;
    font-size: 1.2em;
    margin: 10px 0;
  }

  .page-index-core-services__cta-button--secondary {
    margin-top: 15px;
  }
}

@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: 2em;
  }

  .page-index-core-services__hero-description,
  .page-index-core-services__section-description,
  .page-index-core-services__cta-description {
    font-size: 1em;
  }

  .page-index-core-services__hero-button,
  .page-index-core-services__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-index-core-services__cta-button {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}