* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }
   body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #e0dedea8;
    
   }
   a {
    text-decoration: none;
   }
   li {
    list-style: none;
   }

   /* NAVBAR STYLING STARTS */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    /* position: fixed; */
    width: 100%;
    background-color: #00b61200;
    color: #fff;
   }

   .donate {
       background-color: #200303a8;
       padding: 7px;
       border-radius: 3px;
   }

   .nav-links a {
    color: rgb(0, 0, 0);
   }
   /* LOGO */
   .logo img {
       width: 60px;
       height: 50px;
       }
   /* NAVBAR MENU */
   .menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
   }
   .menu li:hover {
    background-color: #00b613;
    border-radius: 5px;
    animation-duration: 0.5s;
    transition: all 0.5s ease-in-out;
    transition: 0.3s ease;
   }
   .menu li {
    padding: 5px 14px;
   }
   /* DROPDOWN MENU */
   .services {
    position: relative; 
   }
   .dropdown {
    background-color: #00b613;
    padding: 1em 0;
    position: absolute; /*WITH RESPECT TO PARENT*/
    display: none;
    border-radius: 8px;
    top: 35px;
   }
   .dropdown li + li {
    margin-top: 10px;
   }
   .dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
   }
   .dropdown li:hover {
    background-color: #4c9e9e;
   }
   .services:hover .dropdown {
    display: block;
   }
   

   /*RESPONSIVE NAVBAR MENU STARTS*/
/* CHECKBOX HACK */
input[type=checkbox]{
    display: none;
   } 
   /*HAMBURGER MENU*/
   .hamburger {
    display: none;
     font-size: 24px;
     color: rgb(0, 0, 0);
    user-select: none;
   }
   /* APPLYING MEDIA QUERIES */
   @media (max-width: 768px) {
   .menu { 
    display:none;
    position: absolute;
    background-color:#0083ff;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
   }
   .menu li:hover {
    display: inline-block;
    background-color:#4c9e9e;
    transition: 0.3s ease;
   }
   .menu li + li {
    margin-top: 12px;
   }
   input[type=checkbox]:checked ~ .menu{
    display: block;
   }
   .hamburger {
    display: block;
   }
   .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
   }
   .dropdown li:hover {
    background-color: #4c9e9e;
   }
   }            
    /* NAVBAR STYLING ENDS */

    /* HEADER STYLING STARTS */

    .section{
        width: 80%;
        margin: 0 auto;
    }
    .reach h1{
        font-size: 2.5em;
        font-weight: bold;
        color: #000000;
        text-align: center;
        margin-bottom: 1em;
    }
    .reach {
        background-color: #ffffff;
        padding: 1em 0;
        height: 500px;
        margin-bottom: 1em;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.199);
    }

    .contact{
        width: 100%;
        margin: 0 auto;
         text-align: center;
     }
     .form-group{         
        width: 50%;
        margin: 0 auto;
        height: 100px;
        text-align: center;
        justify-content: flex-start;
     }
     label{
        font-size: 1em;
        font-weight: normal;
        padding: 5px;
         color: #000000;
        margin-bottom: 0.5em;
     }
        .form-control{
            width: 100%;
            height: 50px;
            border-radius: 5px;
            border: none;
            background-color: #afafafb0;
            padding: 0.5em;
            margin-bottom: 0.5em;
        }
        .btn {
             height: 50px;
            border-radius: 5px;
            border: none;
            background-color: #00b613;
            color: #fff;
            font-weight: bold;
            font-size: 1.2em;
         }