/* style/success-stories-entertainment-highlights.css */
.page-success-stories-entertainment-highlights {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary dark blue background */
  line-height: 1.6;
}

.page-success-stories-entertainment-highlights__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-success-stories-entertainment-highlights__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-success-stories-entertainment-highlights__subtitle {
  font-size: 1.5em;
  color: #ADD8E6; /* Light blue for subtitle, good contrast with dark background */
  margin-bottom: 40px;
}

.page-success-stories-entertainment-highlights__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-success-stories-entertainment-highlights__button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-success-stories-entertainment-highlights__button--secondary {
  background-color: #0F3460; /* Slightly lighter dark blue */
  color: #FFD700; /* Gold text */
  border: 1px solid #FFD700;
  margin-left: 20px;
}

.page-success-stories-entertainment-highlights__button--secondary:hover {
  background-color: #1a4f8f;
  color: #FFD700;
}

.page-success-stories-entertainment-highlights__button--cta {
  margin-top: 30px;
  font-size: 1.3em;
  padding: 18px 35px;
}

.page-success-stories-entertainment-highlights__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2); /* Subtle gold separator */
}

.page-success-stories-entertainment-highlights__section:last-of-type {
  border-bottom: none;
}

.page-success-stories-entertainment-highlights__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-success-stories-entertainment-highlights__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-success-stories-entertainment-highlights__introduction p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-success-stories-entertainment-highlights__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-success-stories-entertainment-highlights__image--large {
  width: 80%;
}

.page-success-stories-entertainment-highlights__image--small {
  width: 50%;
}

.page-success-stories-entertainment-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-success-stories-entertainment-highlights__grid-item {
  background-color: #1a2a40; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-success-stories-entertainment-highlights__grid-item:hover {
  transform: translateY(-5px);
  background-color: #213d61;
}

.page-success-stories-entertainment-highlights__grid-item img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-success-stories-entertainment-highlights__grid-item h3 {
  color: #FFD700; /* Gold for subheadings */
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-success-stories-entertainment-highlights__grid-item p {
  font-size: 1em;
  color: #C0C0C0;
}

.page-success-stories-entertainment-highlights__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-success-stories-entertainment-highlights__testimonial-card {
  background-color: #1a2a40;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700; /* Gold accent on testimonials */
}

.page-success-stories-entertainment-highlights__testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-success-stories-entertainment-highlights__testimonial-author {
  font-weight: bold;
  text-align: right;
  color: #FFD700;
}

.page-success-stories-entertainment-highlights__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-success-stories-entertainment-highlights__list li {
  background-color: #1a2a40;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ADD8E6; /* Light blue accent */
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-success-stories-entertainment-highlights__list li strong {
  color: #FFD700;
}

.page-success-stories-entertainment-highlights__cta {
  text-align: center;
  padding: 80px 0;
  background-color: #0F3460; /* Slightly lighter dark blue for CTA section */
}

.page-success-stories-entertainment-highlights__cta-buttons {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-success-stories-entertainment-highlights__title {
    font-size: 2.5em;
  }

  .page-success-stories-entertainment-highlights__subtitle {
    font-size: 1.2em;
  }

  .page-success-stories-entertainment-highlights__section-title {
    font-size: 2em;
  }

  .page-success-stories-entertainment-highlights__grid {
    grid-template-columns: 1fr;
  }

  .page-success-stories-entertainment-highlights__testimonial-grid {
    grid-template-columns: 1fr;
  }

  .page-success-stories-entertainment-highlights__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .page-success-stories-entertainment-highlights__cta-buttons a {
    display: block;
    margin-bottom: 15px;
  }
  .page-success-stories-entertainment-highlights__image--large {
    width: 100%;
  }
  .page-success-stories-entertainment-highlights__image--small {
    width: 70%;
  }
}

@media (max-width: 480px) {
  .page-success-stories-entertainment-highlights__title {
    font-size: 2em;
  }

  .page-success-stories-entertainment-highlights__subtitle {
    font-size: 1em;
  }

  .page-success-stories-entertainment-highlights__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-success-stories-entertainment-highlights__section {
    padding: 40px 0;
  }

  .page-success-stories-entertainment-highlights__section-title {
    font-size: 1.8em;
  }

  .page-success-stories-entertainment-highlights__grid-item h3 {
    font-size: 1.5em;
  }
}