   :root {
            --primary: #3a7d44;
            --secondary: #5d9c59;
            --accent: #f8b400;
            --background: #f5f9f1;
            --text: #2c3e2d;
            --light: #ffffff;
            --shadow: rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
          
        }

    

   

   

       


        .footer-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
            padding-right: 20px;
        }
/*--------boxapp--------*/
        .footer-section h3 {
            color: #F28C28;
            font-size: 25px;
            margin-bottom: 15px;
            
            padding-bottom: 10px;
        }

     

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }
/*--------*/
        .footer-section ul li a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
/*------*/
        .footer-section ul li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffffff;
            transition: width 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

  
        .donation-form {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
            margin-top: 15px;
        }

        .donation-amount {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

      
    


        .impact-numbers {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
            margin-top: 20px;
        }

        .impact-item {
            flex: 1;
            min-width: 100px;
            text-align: center;
            padding: 10px;
        
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

   
/*---------*/
        .impact-number {
            font-size: 20px;
            font-weight: 600;
            color: #F28C28;
            margin-bottom: 5px;
        }
/*-------------------*/
        .impact-label {
            font-size: 20px;
            color: #ffffff;
        }

  

    
     
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
/*-------------------*/
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            font-size: 3em;
            background-color: var(--light);
            color: var(--primary);
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px var(--shadow);
        }

        .social-links a:hover {
            background-color: #F28C28;
            color: var(--light);
            transform: translateY(-3px) rotate(10deg);
        }

    
    
 


    




       
       

     

 