/* History Page Styling */

/* General section styling */
.story-intro, .featured-members {
  padding: 60px 0;
}

/* Section content styling */
.content {
  margin-bottom: 30px;
}

.content h3 {
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.content .fst-italic {
  color: #666;
  margin-bottom: 20px;
}

.content p {
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.content a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.content a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Image styling */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .story-intro, .featured-members {
    padding: 40px 0;
  }
  
  .order-lg-1 {
    margin-top: 30px;
  }
}

/* Background color alternating for sections */
.story-intro {
  background-color: #f9f9f9;
}

.featured-members {
  background-color: #ffffff;
}
