body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  margin-bottom: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

footer {
  text-align: center;
}

.navbar-brand {
  font-weight: bold;
  color: #007bff !important;
}

.nav-link:hover {
  color: #0056b3 !important;
}

/* #who-we-are img {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  display: block;
} */

.parallax {
  position: relative;  /* Required for overlay positioning */
  background-image: url('../images/parallax.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

/* Add the dark overlay */
.parallax::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);  /* Black overlay with 50% opacity */
  z-index: 1;  /* Places the overlay above the background image */
}

/* Ensure content stays above the overlay */
.parallax .container {
  position: relative;
  z-index: 2;  /* Places the content above the overlay */
}


#introduction .btn {
  margin-bottom: 2rem;  /* Adds some space at the bottom */
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member-wrapper {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-member-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 5px solid #f8f9fa;
}

.team-member-info {
  padding-top: 15px;
}

.team-member-info h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.5rem;
}

.team-member-position {
  color: #007bff;
  font-weight: bold;
  margin-bottom: 10px;
}

.team-member-description {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.modal-content {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background-color: #007bff;
  color: white;
  border-bottom: none;
}

.modal-title {
  font-weight: bold;
}

.modal-body p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.scenario-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.chart-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 15px;
  margin-top: 20px;
}

.shock-table {
  width: 100%;
  margin-top: 20px;
}

.histogram-section {
  min-height: 500px;
}