/* style/index-vivu88-brand-story.css */
.page-index-vivu88-brand-story {
  font-family: 'Arial', sans-serif;
  color: #003366;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-index-vivu88-brand-story__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-index-vivu88-brand-story__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00;
}

.page-index-vivu88-brand-story__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-index-vivu88-brand-story__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-index-vivu88-brand-story__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-index-vivu88-brand-story__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFCC00;
}

.page-index-vivu88-brand-story__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-index-vivu88-brand-story__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-index-vivu88-brand-story__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-vivu88-brand-story__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-vivu88-brand-story__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-index-vivu88-brand-story__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-vivu88-brand-story__image-half-width {
  width: calc(50% - 10px);
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-vivu88-brand-story__value-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-vivu88-brand-story__value-item:hover {
  transform: translateY(-5px);
}

.page-index-vivu88-brand-story__value-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

.page-index-vivu88-brand-story__value-item .page-index-vivu88-brand-story__sub-title {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
  color: #003366;
}

.page-index-vivu88-brand-story__value-item p {
  font-size: 1em;
  color: #555555;
}

.page-index-vivu88-brand-story__cta {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-index-vivu88-brand-story__cta-content {
  max-width: 900px;
}

.page-index-vivu88-brand-story__cta .page-index-vivu88-brand-story__section-title {
  color: #FFCC00;
  margin-bottom: 30px;
}

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

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

.page-index-vivu88-brand-story__cta-button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-index-vivu88-brand-story .highlight-text {
  color: #FFCC00;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-vivu88-brand-story__hero-title {
    font-size: 2.8em;
  }
  .page-index-vivu88-brand-story__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-vivu88-brand-story__section-title {
    font-size: 2em;
  }
  .page-index-vivu88-brand-story__sub-title {
    font-size: 1.6em;
  }
  .page-index-vivu88-brand-story__text-block {
    font-size: 1em;
  }
  .page-index-vivu88-brand-story__image-half-width {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-index-vivu88-brand-story__hero-title {
    font-size: 2.2em;
  }
  .page-index-vivu88-brand-story__hero-subtitle {
    font-size: 1em;
  }
  .page-index-vivu88-brand-story__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-vivu88-brand-story__values-grid {
    grid-template-columns: 1fr;
  }
  .page-index-vivu88-brand-story__image-half-width {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-index-vivu88-brand-story__hero-title {
    font-size: 1.8em;
  }
  .page-index-vivu88-brand-story__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-vivu88-brand-story__section-title {
    font-size: 1.8em;
  }
  .page-index-vivu88-brand-story__sub-title {
    font-size: 1.4em;
  }
  .page-index-vivu88-brand-story__cta-buttons {
    flex-direction: column;
  }
  .page-index-vivu88-brand-story__cta-button {
    width: 100%;
  }
  .page-index-vivu88-brand-story__image-full-width,
  .page-index-vivu88-brand-story__image-half-width {
    margin: 20px 0;
  }
}