/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
  }
  
  .container {
    max-width: 100vw;
    
    font-size: 1.0rem;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    
    
    padding: 50px;
    background-color: white;
   
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .container h2 #list{
    text-align: center;
    font-size: 80%;
  }



  .about-overview-hero {
    background-image: url('mfanganomap.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem;
}

.container img {
    height: 50vh;
    max-width: 100%;
    object-fit: contain;
}

/* Responsive adjustments for small devices */
@media (max-width: 768px) {
    .about-overview-hero {
        height: 70vh; /* Reduce height on smaller screens */
        background-size: contain; /* Or 'cover' depending on your preference */
        background-repeat: no-repeat;
        background-position: center center;
    }
    
    .container img {
        height: 70vh; /* Reduce image size on mobile */
        width: auto;
        max-width: 90%; /* Ensure it doesn't overflow */
        margin: 0 auto; /* Center horizontally */
    }
}

/* Extra small devices (phones) */
@media (max-width: 480px) {
    .about-overview-hero {
        height: 60vh;
        background-size: contain;
    }
    
    .container img {
        height: 25vh;
    }
}
  
  h2 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .vision {
    font-style: italic;
    font-size: 1.2rem;
    color: #1E90FF; /* Blue */
    text-align: center;
    margin-bottom: 20px;
  }
  
  .core-values, .objectives {
    padding-left: 20px;
  }
  
  .core-values li, .objectives li {
    margin-bottom: 10px;
  }
  
  .core-values li::before {
    content: "•";
    color: #FFD700; /* Yellow */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  
  .objectives li {
    list-style-type: decimal;
    margin-left: 20px;
  }
  
  .objectives ul {
    list-style-type: disc;
    margin-left: 40px;
  }
  
  .status {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .members-count {
    font-size: 1.2rem;
    color: #1E90FF; /* Blue */
    text-align: center;
    padding: 10px;
    background-color: #FFD700; /* Yellow */
    border-radius: 5px;
    margin-top: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 15px;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    .vision {
      font-size: 1rem;
    }
  
    .status, .members-count {
      font-size: 1rem;
    }
  }


   /* 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;
  }


  /*Register For Sacco Btn styles*/
  .register-f0r-sacco{
    height: 50px;
    width: 15vw;
    border-radius: 5px;
    background-color: darkblue;
    color: white;
    margin-top: 100px;
    transition: transform 0.3s ease-in-out;
  }

  .register-f0r-sacco:hover {
    background-color: #FFD700;
    color: black;
    transform: scale(1.2);
    cursor: pointer;
  }