/* style/nbet-brand-story-team.css */
.page-nbet-brand-story-team {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0F1230; /* Very dark blue, slightly lighter than main color for body */
}

.page-nbet-brand-story-team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-nbet-brand-story-team__hero-section {
  background: linear-gradient(135deg, #1A237E, #0F1230);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-nbet-brand-story-team__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-nbet-brand-story-team__hero-subtitle {
  font-size: 1.4em;
  color: #B0BEC5; /* Lighter grey for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-nbet-brand-story-team__hero-image-wrapper {
  margin-top: 40px;
}

.page-nbet-brand-story-team__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-nbet-brand-story-team__section {
  padding: 60px 0;
  background-color: #1A237E; /* Main dark blue for sections */
  color: #E0E0E0;
}

.page-nbet-brand-story-team__section--alt-bg {
  background-color: #0F1230; /* Darker background for alternating sections */
}

.page-nbet-brand-story-team__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-nbet-brand-story-team__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-nbet-brand-story-team__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #CFD8DC; /* Slightly lighter text for readability */
}

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

.page-nbet-brand-story-team__feature-item {
  background-color: #262E6F; /* Slightly lighter blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nbet-brand-story-team__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-nbet-brand-story-team__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-nbet-brand-story-team__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-nbet-brand-story-team__feature-description {
  font-size: 1em;
  color: #B0BEC5;
}

.page-nbet-brand-story-team__image-with-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-nbet-brand-story-team__inline-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-nbet-brand-story-team__text-block {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.page-nbet-brand-story-team__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-nbet-brand-story-team__sub-title:first-of-type {
  margin-top: 0;
}

.page-nbet-brand-story-team__full-width-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-nbet-brand-story-team__cta-section {
  background-color: #FFD700; /* Gold for CTA section */
  padding: 80px 0;
  text-align: center;
  color: #1A237E; /* Dark blue text on gold background */
}

.page-nbet-brand-story-team__cta-title {
  font-size: 2.8em;
  color: #1A237E;
  margin-bottom: 20px;
}

.page-nbet-brand-story-team__cta-description {
  font-size: 1.3em;
  color: #3F51B5; /* Slightly lighter blue for description */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-nbet-brand-story-team__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-nbet-brand-story-team__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-nbet-brand-story-team__cta-button {
  background-color: #1A237E; /* Dark blue button on gold background */
  color: #FFD700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-nbet-brand-story-team__cta-button:hover {
  background-color: #3F51B5; /* Lighter blue on hover */
  color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-nbet-brand-story-team__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #1A237E;
  color: #1A237E;
}

.page-nbet-brand-story-team__cta-button--secondary:hover {
  background-color: #1A237E;
  color: #FFD700;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-nbet-brand-story-team__hero-title {
    font-size: 2.8em;
  }
  .page-nbet-brand-story-team__section-title {
    font-size: 2em;
  }
  .page-nbet-brand-story-team__image-with-text {
    flex-direction: column;
  }
  .page-nbet-brand-story-team__inline-image,
  .page-nbet-brand-story-team__text-block {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-nbet-brand-story-team__hero-title {
    font-size: 2.2em;
  }
  .page-nbet-brand-story-team__hero-subtitle,
  .page-nbet-brand-story-team__cta-description {
    font-size: 1.1em;
  }
  .page-nbet-brand-story-team__section-title {
    font-size: 1.8em;
  }
  .page-nbet-brand-story-team__sub-title {
    font-size: 1.5em;
  }
  .page-nbet-brand-story-team__cta-title {
    font-size: 2.2em;
  }
  .page-nbet-brand-story-team__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-nbet-brand-story-team__features-grid {
    grid-template-columns: 1fr;
  }
  .page-nbet-brand-story-team__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-nbet-brand-story-team__hero-title {
    font-size: 1.8em;
  }
  .page-nbet-brand-story-team__section-title {
    font-size: 1.6em;
  }
  .page-nbet-brand-story-team__cta-title {
    font-size: 1.8em;
  }
  .page-nbet-brand-story-team__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-nbet-brand-story-team__hero-section,
  .page-nbet-brand-story-team__section,
  .page-nbet-brand-story-team__cta-section {
    padding: 40px 0;
  }
  .page-nbet-brand-story-team__container {
    padding: 0 15px;
  }
}