.page-index-about-us-brief {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text on dark background for general content */
  line-height: 1.6;
}

.page-index-about-us-brief__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-about-us-brief__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #000000 100%); /* Dark blue to black for depth */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold text for hero title */
}

.page-index-about-us-brief__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-index-about-us-brief__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0; /* Slightly lighter text for subtitle */
}

.page-index-about-us-brief__hero-button,
.page-index-about-us-brief__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-index-about-us-brief__hero-button:hover,
.page-index-about-us-brief__cta-button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-index-about-us-brief__cta-button--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-about-us-brief__cta-button--outline:hover {
  background-color: #FFD700;
  color: #1A237E;
}

.page-index-about-us-brief__content-section {
  padding: 60px 0;
}

.page-index-about-us-brief__section--dark {
  background-color: #1A237E; /* Dark blue background */
  color: #f0f0f0; /* Light text */
}

.page-index-about-us-brief__section--light {
  background-color: #2c3a90; /* Slightly lighter blue background */
  color: #ffffff; /* White text */
}

.page-index-about-us-brief__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-about-us-brief__text-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.page-index-about-us-brief__text-block p,
.page-index-about-us-brief__text-block ul,
.page-index-about-us-brief__text-block ol {
  flex: 1;
  min-width: 300px;
  padding: 15px;
  font-size: 1.1em;
}

.page-index-about-us-brief__text-block ul,
.page-index-about-us-brief__text-block ol {
  list-style-position: inside;
  padding-left: 20px;
}

.page-index-about-us-brief__text-block li {
  margin-bottom: 10px;
}

.page-index-about-us-brief__image {
  flex: 0 0 40%;
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin: 20px;
}

.page-index-about-us-brief__image--left {
  order: -1; /* Image on left */
}

.page-index-about-us-brief__image--right {
  order: 1; /* Image on right */
}

@media (max-width: 768px) {
  .page-index-about-us-brief__hero-title {
    font-size: 2.5em;
  }
  .page-index-about-us-brief__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-about-us-brief__section-title {
    font-size: 2em;
  }
  .page-index-about-us-brief__text-block {
    flex-direction: column;
  }
  .page-index-about-us-brief__text-block p,
  .page-index-about-us-brief__text-block ul,
  .page-index-about-us-brief__text-block ol {
    min-width: unset;
    width: 100%;
    padding: 10px 0;
  }
  .page-index-about-us-brief__image {
    max-width: 90%;
    margin: 20px auto;
    order: unset; /* Reset order for mobile */
  }
}

.page-index-about-us-brief__cta-section {
  background-color: #0d124b; /* Even darker blue for CTA */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-index-about-us-brief__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-about-us-brief__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-index-about-us-brief__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-about-us-brief__text-block h3 {
  color: #FFD700; /* Gold for subheadings within text blocks */
  font-size: 1.8em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-index-about-us-brief__text-block strong {
  color: #FFD700; /* Highlight important keywords */
}

/* Ensure contrast for links within content */
.page-index-about-us-brief a {
  color: #FFD700; /* Gold links */
  text-decoration: underline;
}

.page-index-about-us-brief a:hover {
  color: #e5c100; /* Darker gold on hover */
}

/* Specific link for CTA within text */
.page-index-about-us-brief__cta-button.page-index-about-us-brief__text-block a {
  background-color: #FFD700;
  color: #1A237E;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
}

.page-index-about-us-brief__cta-button.page-index-about-us-brief__text-block a:hover {
  background-color: #e5c100;
}