/* style/index-99win-brand-story-and-vision.css */
.page-index-99win-brand-story-and-vision {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #1A2A3A; /* Main dark background */
  line-height: 1.6;
}

.page-index-99win-brand-story-and-vision__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-99win-brand-story-and-vision__hero-section {
  background: linear-gradient(135deg, #1A2A3A 0%, #3a4f64 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-99win-brand-story-and-vision__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-99win-brand-story-and-vision__hero-subtitle {
  font-size: 1.4em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-index-99win-brand-story-and-vision__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-index-99win-brand-story-and-vision__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-99win-brand-story-and-vision__section:last-of-type {
  border-bottom: none;
}

.page-index-99win-brand-story-and-vision__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-99win-brand-story-and-vision__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-99win-brand-story-and-vision__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
}

.page-index-99win-brand-story-and-vision__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #E0E0E0;
  text-align: justify;
}

.page-index-99win-brand-story-and-vision__image-inline {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-index-99win-brand-story-and-vision__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-99win-brand-story-and-vision__value-item {
  background-color: #2a3e52; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-99win-brand-story-and-vision__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-index-99win-brand-story-and-vision__value-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: center;
}

.page-index-99win-brand-story-and-vision__value-description {
  font-size: 1em;
  color: #C0C0C0;
  text-align: justify;
}

.page-index-99win-brand-story-and-vision__milestone-list,
.page-index-99win-brand-story-and-vision__strategy-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-index-99win-brand-story-and-vision__milestone-list li,
.page-index-99win-brand-story-and-vision__strategy-list li {
  background-color: #2a3e52;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-index-99win-brand-story-and-vision__milestone-list li:hover,
.page-index-99win-brand-story-and-vision__strategy-list li:hover {
  background-color: #344a60;
}

.page-index-99win-brand-story-and-vision__milestone-list li strong,
.page-index-99win-brand-story-and-vision__strategy-list li strong {
  color: #FFD700;
}

.page-index-99win-brand-story-and-vision__strategy-list {
  counter-reset: strategy-counter;
}

.page-index-99win-brand-story-and-vision__strategy-list li::before {
  counter-increment: strategy-counter;
  content: counter(strategy-counter) ". ";
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
}

.page-index-99win-brand-story-and-vision__section--cta {
  background: linear-gradient(90deg, #1A2A3A, #2a3e52);
  text-align: center;
  padding: 60px 0;
}

.page-index-99win-brand-story-and-vision__cta-content {
  max-width: 900px;
}

.page-index-99win-brand-story-and-vision__section-title--cta {
  margin-bottom: 20px;
  color: #FFD700;
}

.page-index-99win-brand-story-and-vision__section-title--cta::after {
  background-color: #FFD700;
}

.page-index-99win-brand-story-and-vision__text-block--cta {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-index-99win-brand-story-and-vision__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-99win-brand-story-and-vision__btn {
  display: inline-block;
  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, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-index-99win-brand-story-and-vision__btn--primary {
  background-color: #FFD700;
  color: #1A2A3A;
}

.page-index-99win-brand-story-and-vision__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.page-index-99win-brand-story-and-vision__btn--secondary {
  background-color: #1A2A3A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-99win-brand-story-and-vision__btn--secondary:hover {
  background-color: #344a60;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-99win-brand-story-and-vision__hero-title {
    font-size: 2.8em;
  }

  .page-index-99win-brand-story-and-vision__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-99win-brand-story-and-vision__section-title {
    font-size: 2em;
  }

  .page-index-99win-brand-story-and-vision__values-grid {
    grid-template-columns: 1fr;
  }

  .page-index-99win-brand-story-and-vision__value-item {
    padding: 25px;
  }

  .page-index-99win-brand-story-and-vision__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-99win-brand-story-and-vision__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-index-99win-brand-story-and-vision__hero-title {
    font-size: 2.2em;
  }

  .page-index-99win-brand-story-and-vision__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-99win-brand-story-and-vision__section-title {
    font-size: 1.8em;
  }

  .page-index-99win-brand-story-and-vision__text-block {
    font-size: 1em;
  }

  .page-index-99win-brand-story-and-vision__subsection-title {
    font-size: 1.5em;
  }

  .page-index-99win-brand-story-and-vision__milestone-list li,
  .page-index-99win-brand-story-and-vision__strategy-list li {
    font-size: 1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-99win-brand-story-and-vision__hero-section {
    padding: 80px 0 40px;
  }

  .page-index-99win-brand-story-and-vision__hero-title {
    font-size: 1.8em;
  }

  .page-index-99win-brand-story-and-vision__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-99win-brand-story-and-vision__section {
    padding: 50px 0;
  }

  .page-index-99win-brand-story-and-vision__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .page-index-99win-brand-story-and-vision__value-item {
    padding: 20px;
  }

  .page-index-99win-brand-story-and-vision__value-title {
    font-size: 1.4em;
  }

  .page-index-99win-brand-story-and-vision__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
}