@charset "UTF-8";
/* Styling specific to the Investors page */

.investors-page {
  padding: 2rem;
  background-color: #111;
  color: #fff;
  font-family: 'Anton', sans-serif;
}

.investors-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-05.png') center/cover no-repeat;
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin-top: 80px; /* offset for sticky header */
}

.investors-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #e53935;
  margin-bottom: 0.5rem;
}

.investors-hero p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
  /* Use a lighter, more readable font for hero paragraph */
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.investors-section {
  margin-top: 4rem;
}

.investors-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #3399ff;
  margin-bottom: 1rem;
}

.investors-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  max-width: 900px;
  margin-bottom: 1rem;
  /* Use a lighter, more readable font for body copy */
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.benefits-list, .opportunity-list, .use-funds-list {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}

.benefits-list li,
.opportunity-list li,
.use-funds-list li {
  margin-bottom: 0.5rem;
}

.investors-cta {
  text-align: center;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #1e1e1e;
  border-radius: 8px;
}
.investors-cta h3 {
  font-family: 'Bebas Neue', sans-serif;
  color: #e53935;
  margin-bottom: 0.5rem;
}
.investors-cta p {
  color: #ccc;
  margin-bottom: 1rem;
}

/* Footer logo sizing: ensure the logo in the footer is smaller and consistent */
.footer-logo img {
  /* Smaller footer logo size for consistency */
  max-width: 35px;
  width: 100%;
  height: auto;
}