.page-index-fatchai-brand-story {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  background-color: #FFFFFF;
}

.page-index-fatchai-brand-story__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 80px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-index-fatchai-brand-story__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-index-fatchai-brand-story__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background for text */
  border-radius: 10px;
}

.page-index-fatchai-brand-story__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-fatchai-brand-story__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-index-fatchai-brand-story__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for FCBC45 background */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-index-fatchai-brand-story__hero-button:hover {
  background-color: #e0a53b;
}

.page-index-fatchai-brand-story__section {
  padding: 60px 20px;
  text-align: center;
  background-color: #FFFFFF;
}

.page-index-fatchai-brand-story__section:nth-of-type(odd) {
  background-color: #f8f8f8;
}

.page-index-fatchai-brand-story__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-fatchai-brand-story__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
}

.page-index-fatchai-brand-story__section-description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-fatchai-brand-story__section-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

.page-index-fatchai-brand-story__value-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

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

.page-index-fatchai-brand-story__value-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-index-fatchai-brand-story__value-description {
  font-size: 1em;
  color: #555555;
}

.page-index-fatchai-brand-story__milestone-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-index-fatchai-brand-story__milestone-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333333;
}

.page-index-fatchai-brand-story__milestone-item::before {
  content: '✓';
  color: #FCBC45;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-fatchai-brand-story__section-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.page-index-fatchai-brand-story__section-button:hover {
  background-color: #333333;
}

.page-index-fatchai-brand-story__difference-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-index-fatchai-brand-story__difference-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333333;
}

.page-index-fatchai-brand-story__difference-item::before {
  content: '★';
  color: #FCBC45;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-fatchai-brand-story__cta-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-fatchai-brand-story__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  z-index: 0;
  min-width: 200px;
  min-height: 200px;
}

.page-index-fatchai-brand-story__cta-title {
  position: relative;
  z-index: 1;
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-index-fatchai-brand-story__cta-description {
  position: relative;
  z-index: 1;
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.page-index-fatchai-brand-story__cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-fatchai-brand-story__cta-button {
  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, color 0.3s ease;
}

.page-index-fatchai-brand-story__cta-button--register {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text */
}

.page-index-fatchai-brand-story__cta-button--register:hover {
  background-color: #e0a53b;
}

.page-index-fatchai-brand-story__cta-button--login {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text */
  border: 2px solid #FCBC45;
}

.page-index-fatchai-brand-story__cta-button--login:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-fatchai-brand-story__hero-title {
    font-size: 2.5em;
  }

  .page-index-fatchai-brand-story__hero-description,
  .page-index-fatchai-brand-story__section-description,
  .page-index-fatchai-brand-story__value-description,
  .page-index-fatchai-brand-story__milestone-item,
  .page-index-fatchai-brand-story__difference-item,
  .page-index-fatchai-brand-story__cta-description {
    font-size: 1em;
  }

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

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

  .page-index-fatchai-brand-story__cta-buttons {
    flex-direction: column;
  }

  .page-index-fatchai-brand-story__cta-button {
    width: 80%;
  }

  .page-index-fatchai-brand-story__hero-image,
  .page-index-fatchai-brand-story__section-image,
  .page-index-fatchai-brand-story__cta-image {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-index-fatchai-brand-story__hero-button,
  .page-index-fatchai-brand-story__section-button,
  .page-index-fatchai-brand-story__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}