/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  /* Global Styles */
  header {
    background-color: #1CABE2;
    text-align: center;
    padding: 20px;
    position: relative;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo {
    margin-right: 20px;
  }
  
  .logo img {
    max-width: 200px; /* Increase the width for a larger logo */
    opacity: 1; /* Remove fading by setting opacity to 1 (fully opaque) */
  }
  
  .menu-btn {
    display: none; /* Hide the burger icon by default on larger screens */
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
  }
  
  .menu-btn .icon-bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background-color: #fff;
  }
  
  .menu-btn:hover .icon-bar {
    background-color: #ccc; /* Add a hover effect to the burger icon */
  }
  
  nav.main-nav {
    display: none; /* Hide the main navigation by default on mobile */
  }
  
  nav.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }

  nav.main-nav ul li {
    margin: 0 20px; /* Add some spacing between each link */
  }

  nav.main-nav ul li a {
    color: #fff;
    text-decoration: none;
  }


  
  /* Media query for smaller screens (burger menu) */
  @media screen and (max-width: 768px) {
    .header-content {
      flex-wrap: wrap;
    }
    .main-nili {
        display: flex;
        flex-direction: column;
        background-color: #333;
        text-align: center;
         /* Make the navigation stay fixed at the bottom */
        bottom: 0; /* Position the navigation at the bottom of the viewport */
        left: 0;
        width: 100%;
        z-index: 1;
      }
    
      .main-nili ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
    
      .main-nili ul li {
        margin: 10px 0;
      }
    
      .main-nili ul li a {
        color: #fff;
        text-decoration: none;
      }
    
    .logo {
      margin-bottom: 10px;
    }
  
    .menu-btn {
      display: block; /* Display the burger icon on smaller screens */
    }
  
    /* Hide the checkbox input on mobile screens */
    #menu-toggle {
      display: none;
    }
  
    #menu-toggle:checked ~ .main-nav {
      display: flex; /* Show the main navigation when the checkbox is checked */
      flex-direction: column;
      background-color: #333;
      text-align: center;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      z-index: 1;
    }
  
    #menu-toggle:checked ~ .main-nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    #menu-toggle:checked ~ .main-nav ul li {
      margin: 10px 0;
    }
  
    /* Remove the extra line in the hamburger icon */
    .menu-btn .icon-bar {
      transition: all 0.2s;
      position: relative;
    }
  
    .menu-toggle:checked + .menu-btn .icon-bar:nth-child(2) {
      opacity: 0;
    }
   

    .menu-toggle:checked + .menu-btn .icon-bar:nth-child(1),
    .menu-toggle:checked + .menu-btn .icon-bar:nth-child(3) {
      transform: translateY(7px) rotate(45deg);
    }
  }
  
  /* Show the main navigation on normal screens */
  @media screen and (min-width: 769px) {
    .main-nav {
      display: none; /* Hide the main navigation on non-mobile screens */
    }
    .main-nili {
        display: none; /* Hide the main navigation on non-mobile screens */
      }
    .menu-btn {
      display: none; /* Hide the burger icon on non-mobile screens */
    }
    nav.main-navita {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #333;
      padding: 10px 0;
    }
    nav.main-navita ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
    }
    nav.main-navita ul li {
      margin: 0 20px; /* Add some spacing between each link */
    }
    nav.main-navita ul li a {
      color: #fff;
      text-decoration: none;
    }
  }
  
  /* Hide the checkbox on non-mobile screens */
  @media screen and (min-width: 769px) {
    .menu-toggle {
      display: none;
    }
  }
  
  /* Your existing custom styles here */
  
  .container {
    padding: 40px;
  }
  
  .container h2 {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .container p {
    font-size: 18px;
    color: #666;
    text-align: center;
  }
  
  .cause {
    margin-bottom: 40px;
  }
  
  .cause img {
    width: 100%;
    max-width: 400px;
  }
  
  .cause h3 {
    font-size: 24px;
    color: #333;
    margin-top: 10px;
  }
  
  .cause p {
    font-size: 16px;
    color: #666;
  }
  
  .donate-btn {
    display: inline-block;
    background-color: #f52327;
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    margin-top: 10px;
  }
  
  /* Custom Styling for Home Page Hero Section */
  #home .hero {
    background-color: 	#1CABE2;
    color: #fff;
    text-align: center;
    padding: 100px 0;
  }
  
  #home .hero h2 {
    font-size: 36px;
  }
  
  #home .hero p {
    font-size: 18px;    
    padding-bottom: 20px;
  }
  
  #home .cta-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 16px;
    background-color: #ffffff;
    color: #ff0000;
    border: none;
    border-radius: 5px;
    cursor: pointer;    
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  #home .cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  footer{
    text-align: center;
    /* Make the navigation stay fixed at the bottom */
    bottom: 0; /* Position the navigation at the bottom of the viewport */
    left: 0;
    width: 100%;
  }
  
  /* Custom Styling for Donate Page */
  #donate {
    background-color: #1CABE2;
    color: #fff;
    text-align: center;
    padding: 100px 0;
  }
  
  #donate h2 {
    font-size: 36px;
    color: #fff !important;
  }
  
  #donate p {
    font-size: 18px;    
    padding-bottom: 20px;
    color: #fff !important; 
  }
  
  #donate .cta-btn {
    background-color: #fff;
    color: #1CABE2;
    padding: 10px 30px;
    font-size: 18px;
    text-decoration: none;
  }
  
  /* Custom Styling for Contact Page Form */
  #contact form {
    display: flex;
    flex-direction: column;
  }
  
  #contact form input,
  #contact form textarea,
  #contact form button {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
  }
  
  #contact form button {
    background-color: #1CABE2;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media only screen and (max-width: 768px) {
    nav.main-navita {
      display: none; /* Hide the navita on mobile screens */
    }
  }
  main {
    padding-bottom: 60px; /* Adjust the value as needed to prevent overlap */
  }
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main {
    flex: 1;
  }
  /* Your existing CSS styles */

.container {
  padding: 40px;
}

.container h2 {
  font-size: 32px;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.container p {
  font-size: 18px;
  color: #666;
  text-align: center;
}

.plan {
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.plan h3 {
  font-size: 24px;
  color: #333;
  margin-top: 10px;
}

.plan p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}


/* Your existing media queries and other styles */
