.page-index-58win1-brand-story {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light grey for body text on dark background */
  background-color: #0A2342; /* Primary dark blue background */
}

.page-index-58win1-brand-story__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-index-58win1-brand-story__hero-section {
  background: linear-gradient(135deg, #0A2342, #1A3A60); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-index-58win1-brand-story__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-index-58win1-brand-story__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #E0E0E0;
}

.page-index-58win1-brand-story__section {
  padding: 60px 0;
  color: #f0f0f0;
  background-color: #1A3A60; /* Slightly lighter dark blue */
}

.page-index-58win1-brand-story__section--dark {
  background-color: #0A2342; /* Primary dark blue */
}

.page-index-58win1-brand-story__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-58win1-brand-story__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-58win1-brand-story__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-58win1-brand-story p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-index-58win1-brand-story strong {
  color: #FFD700;
}

.page-index-58win1-brand-story__list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-index-58win1-brand-story__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-index-58win1-brand-story__list li::before {
  content: '▶'; /* Custom bullet point */
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-58win1-brand-story__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700; /* Gold border */
}

.page-index-58win1-brand-story__image--large {
  width: 90%;
}

.page-index-58win1-brand-story__image--medium {
  width: 70%;
}

.page-index-58win1-brand-story__image--small {
  width: 50%;
}

.page-index-58win1-brand-story__cta-section {
  background-color: #FFD700; /* Gold background for CTA */
  color: #0A2342; /* Dark blue text on gold */
  padding: 80px 0;
  text-align: center;
}

.page-index-58win1-brand-story__cta-section .page-index-58win1-brand-story__section-title {
  color: #0A2342; /* Dark blue title on gold background */
}

.page-index-58win1-brand-story__cta-section .page-index-58win1-brand-story__section-title::after {
  background-color: #0A2342;
}

.page-index-58win1-brand-story__cta-section p {
  color: #0A2342;
  font-size: 1.15em;
  margin-bottom: 30px;
}

.page-index-58win1-brand-story__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-index-58win1-brand-story__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-index-58win1-brand-story__button--primary {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #0A2342;
}

.page-index-58win1-brand-story__button--primary:hover {
  background-color: #1A3A60;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-index-58win1-brand-story__button--secondary {
  background-color: transparent;
  color: #0A2342;
  border: 2px solid #0A2342;
}

.page-index-58win1-brand-story__button--secondary:hover {
  background-color: #0A2342;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-index-58win1-brand-story__button--tertiary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #0A2342;
}

.page-index-58win1-brand-story__button--tertiary:hover {
  background-color: #B39700;
  color: #0A2342;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-58win1-brand-story__hero-title {
    font-size: 2.5em;
  }
  .page-index-58win1-brand-story__section-title {
    font-size: 2em;
  }
  .page-index-58win1-brand-story__sub-title {
    font-size: 1.5em;
  }
  .page-index-58win1-brand-story__image--large {
    width: 100%;
  }
  .page-index-58win1-brand-story__image--medium {
    width: 90%;
  }
  .page-index-58win1-brand-story__image--small {
    width: 70%;
  }
  .page-index-58win1-brand-story__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-index-58win1-brand-story__button {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-index-58win1-brand-story__hero-title {
    font-size: 2em;
  }
  .page-index-58win1-brand-story__section-title {
    font-size: 1.8em;
  }
  .page-index-58win1-brand-story p, .page-index-58win1-brand-story__list li {
    font-size: 1em;
  }
  .page-index-58win1-brand-story__button {
    width: 100%;
  }
}