/* style/index-brand-story.css */
.page-index-brand-story {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Main background color */
}

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

.page-index-brand-story__hero {
  background: linear-gradient(135deg, #0A2342, #1a3a5e);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-index-brand-story__hero-title {
  font-size: 3.5em;
  color: #E0B400; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-brand-story__hero-subtitle {
  font-size: 1.5em;
  max-width: 800px;
  margin: 0 auto;
  color: #D3D3D3;
}

.page-index-brand-story__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(224, 180, 0, 0.1);
}

.page-index-brand-story__section:last-of-type {
  border-bottom: none;
}

.page-index-brand-story__section-title {
  font-size: 2.5em;
  color: #E0B400; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-brand-story__content-block {
  flex: 1;
  padding: 20px;
}

.page-index-brand-story__content-block p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #D3D3D3;
}

.page-index-brand-story__content-block h3 {
  color: #E0B400;
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-brand-story__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

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

.page-index-brand-story__image--center {
  display: block;
  margin: 40px auto;
}

.page-index-brand-story__flex-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index-brand-story__flex-row--reverse {
  flex-direction: row-reverse;
}

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

.page-index-brand-story__milestone-item {
  background-color: #1a3a5e; /* Darker blue for milestone cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-brand-story__milestone-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-brand-story__milestone-year {
  font-size: 1.8em;
  color: #E0B400;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-brand-story__milestone-item p {
  font-size: 1em;
  color: #C0C0C0;
}

.page-index-brand-story__value-list {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.page-index-brand-story__value-list li {
  background-color: #1a3a5e;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #D3D3D3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-index-brand-story__value-list li strong {
  color: #E0B400;
}

.page-index-brand-story__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
  text-align: center;
}

.page-index-brand-story__commitment-item {
  background-color: #1a3a5e;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.page-index-brand-story__commitment-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-brand-story__commitment-item .page-index-brand-story__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 5px rgba(224, 180, 0, 0.5));
}

.page-index-brand-story__commitment-item h3 {
  font-size: 1.8em;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-index-brand-story__commitment-item p {
  font-size: 1.05em;
  color: #C0C0C0;
}

.page-index-brand-story__cta {
  background-color: #0A2342;
  padding: 100px 0;
  text-align: center;
}

.page-index-brand-story__cta-content {
  background: linear-gradient(160deg, #1a3a5e, #0A2342);
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.page-index-brand-story__cta-title {
  font-size: 2.8em;
  color: #E0B400;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-brand-story__cta-description {
  font-size: 1.3em;
  color: #D3D3D3;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-index-brand-story__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.page-index-brand-story__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 220px;
}

.page-index-brand-story__cta-button--primary {
  background-color: #E0B400;
  color: #0A2342;
  border: 2px solid #E0B400;
}

.page-index-brand-story__cta-button--primary:hover {
  background-color: #ffd700;
  border-color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-index-brand-story__cta-button--secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-index-brand-story__cta-button--secondary:hover {
  background-color: #E0B400;
  color: #0A2342;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-index-brand-story__cta-button:last-of-type {
  margin-right: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-brand-story__flex-row {
    flex-direction: column;
  }

  .page-index-brand-story__flex-row--reverse {
    flex-direction: column;
  }

  .page-index-brand-story__hero-title {
    font-size: 2.8em;
  }

  .page-index-brand-story__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-brand-story__section-title {
    font-size: 2em;
  }

  .page-index-brand-story__content-block, .page-index-brand-story__image-block {
    padding: 15px;
  }

  .page-index-brand-story__milestone-grid {
    grid-template-columns: 1fr;
  }

  .page-index-brand-story__cta-title {
    font-size: 2.2em;
  }

  .page-index-brand-story__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-brand-story__hero {
    padding: 80px 0;
  }

  .page-index-brand-story__hero-title {
    font-size: 2.2em;
  }

  .page-index-brand-story__hero-subtitle {
    font-size: 1em;
  }

  .page-index-brand-story__section {
    padding: 60px 0;
  }

  .page-index-brand-story__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-index-brand-story__content-block p {
    font-size: 1em;
  }

  .page-index-brand-story__cta-title {
    font-size: 1.8em;
  }

  .page-index-brand-story__cta-description {
    font-size: 1em;
  }

  .page-index-brand-story__cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
    min-width: unset;
    width: 100%;
  }

  .page-index-brand-story__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-brand-story__hero {
    padding: 60px 0;
  }

  .page-index-brand-story__hero-title {
    font-size: 1.8em;
  }

  .page-index-brand-story__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-brand-story__section {
    padding: 40px 0;
  }

  .page-index-brand-story__section-title {
    font-size: 1.5em;
  }

  .page-index-brand-story__cta-title {
    font-size: 1.5em;
  }
}