/* General Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    font-family: 'Helvetica', sans-serif;
  }
  
  a {
    text-decoration: none;
    color: #007BFF;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Main Content */
  .main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  /* Hero Section */
  .hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('mdfsacco.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    background-color: #f59e0b; /* Yellow */
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .cta-button:hover {
    background-color: #d97706; /* Darker Yellow */
  }
  
  /* Info Section */
  .info-section {
    padding: 2rem 0;
  }
  
  .info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a8a; /* Blue */
    text-align: center;
  }
  
  .info-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .info-text p {
    margin: 0.5rem 0;
  }
  
  .info-text ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
  }
  
  .info-text ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Survey Visualizations */
  .survey-visual {
    margin-top: 2rem;
  }
  
  .chart-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .chart {
    flex: 1;
    min-width: 250px;
  }
  
  .chart h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a; /* Blue */
  }
  
  .bar {
    height: 30px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    color:azure
  }
  
  /* Call to Action Section */
  .cta-section1 {
    text-align: center;
    padding: 3rem 3rem;
    background-color: #1e3a8a; /* Blue */
    color: white;
    margin-top: 1rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1.25rem;
    }
  
    .info-section h2 {
      font-size: 1.75rem;
    }
  
    .chart-container {
      flex-direction: column;
    }
  }

   /*Register For Sacco Btn styles*/
   .register-f0r-sacco{
    height: 50px;
    width: 15vw;
    border-radius: 5px;
    background-color:#FFD700;
    color: blue;
    margin-top: 100px;
    transition: transform 0.3s ease-in-out;
  }

  .register-f0r-sacco:hover {
    background-color:orange ;
    color: black;
    transform: scale(1.2);
    cursor: pointer;
  }