/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    color: #1E90FF; /* Blue */
  }
  
  p {
    color: #666;
  }
  
  .container9 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Hero Section with Parallax */
  .hero {
    background-image: url('mfanganolake1.JPG'); /* Add your image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat; 
    background-size: cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.7rem;
    color: #f4f4f4;
  }
  
  /* About Section */
  .about {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .about h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* Quote Section with Parallax */
  .quote {
    background-image: url('quote-bg.jpg'); /* Add your image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: black;
    text-align: center;
  }
  
  .quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
  }
  
  .quote cite {
    display: block;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  /* Values Section */
  .values {
    padding: 50px 0;
    background-color: white;
  }
  
  .values h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .value-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .value-card h3 {
    color: #1E90FF; /* Blue */
    margin-bottom: 10px;
  }
  
  /* Call-to-Action Section */
  .cta {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .cta h2 {
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .btn-join {
    background-color: #FFD700; /* Yellow */
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .btn-join:hover {
    background-color: #FFA500; /* Darker Yellow */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1.2rem;
    }
  
    .quote blockquote {
      font-size: 1.2rem;
    }
  
    .quote cite {
      font-size: 1rem;
    }
  
    .values-grid {
      grid-template-columns: 1fr;
    }
  
    .btn-join {
      width: 100%;
      padding: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 1.8rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .quote blockquote {
      font-size: 1rem;
    }
  
    .quote cite {
      font-size: 0.9rem;
    }
  
    .cta p {
      font-size: 1rem;
    }
  }