.page-index-brand-story {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-index-brand-story__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1E90FF 0%, #0d47a1 100%); /* Darker blue for background */
}

.page-index-brand-story__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-index-brand-story__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.page-index-brand-story__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0; /* Light grey for description */
}

.page-index-brand-story__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for button */
  color: #1a1a1a; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-index-brand-story__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-brand-story__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-index-brand-story__section:nth-child(even) {
  background-color: #f2f7fc; /* Light blue tint for alternating sections */
}

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

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

.page-index-brand-story__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
}

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

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

.page-index-brand-story__text-content {
  flex: 1;
}

.page-index-brand-story__text-content h3 {
  font-size: 1.8em;
  color: #1E90FF;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-brand-story__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-index-brand-story__image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-index-brand-story__image--left {
  margin-right: 20px;
}

.page-index-brand-story__image--right {
  margin-left: 20px;
}

.page-index-brand-story__button {
  display: inline-block;
  background-color: #1E90FF; /* Blue for general buttons */
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-index-brand-story__button:hover {
  background-color: #1565c0;
  transform: translateY(-1px);
}

.page-index-brand-story__button--primary {
  background-color: #FFD700;
  color: #1a1a1a;
  margin-right: 15px;
}

.page-index-brand-story__button--primary:hover {
  background-color: #e6c200;
}

.page-index-brand-story__button--secondary {
  background-color: #6c757d;
  color: #fff;
}

.page-index-brand-story__button--secondary:hover {
  background-color: #5a6268;
}

.page-index-brand-story__link {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-brand-story__link:hover {
  color: #0d47a1;
  text-decoration: underline;
}

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

.page-index-brand-story__product-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-brand-story__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-brand-story__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-brand-story__card-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin: 20px 15px 10px;
  min-height: 45px;
}

.page-index-brand-story__card-title a {
  color: #1E90FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-brand-story__card-title a:hover {
  color: #0d47a1;
  text-decoration: underline;
}

.page-index-brand-story__card-description {
  font-size: 1em;
  color: #555;
  padding: 0 15px 20px;
}

.page-index-brand-story__call-to-action {
  text-align: center;
  margin-top: 50px;
  font-size: 1.2em;
  color: #333;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-brand-story__hero-title {
    font-size: 2.8em;
  }

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

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

  .page-index-brand-story__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-index-brand-story__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-index-brand-story__image {
    max-width: 100%;
    margin: 0 !important;
  }

  .page-index-brand-story__product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-brand-story__hero-title {
    font-size: 2.2em;
  }

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

  .page-index-brand-story__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

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

  .page-index-brand-story__text-content h3 {
    font-size: 1.5em;
  }

  .page-index-brand-story__text-content p {
    font-size: 0.95em;
  }

  .page-index-brand-story__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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