/* About Page Styles */
.about-section {
    width: 75%;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  .about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #34495e;
  }
  
  .about-content h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #2c3e50;
  }
  
  .about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #2c3e50;
  }
  
  .about-content a {
    color: #007bff;
    text-decoration: none;
  }
  
  .about-content a:hover {
    text-decoration: underline;
  }
  
  .about-content img.history-photo {
    display: block;
    max-width: 30%;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .image-caption {
    text-align: center;
    font-size: 0.9rem; /* Small font size for captions */
    color: #7f8c8d; /* Light grey color for text */
    margin-top: 5px; /* Spacing between image and caption */
    font-style: italic; /* Optional: Italic for captions */
  }
  