*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playpen Sans';
}

img {
    width: 100%;
    height: auto;
}

footer {
    width: 100%;
    background-color: #FFFFFF;
    padding: 2rem;
    border: 20px solid #FFA733; /* Reduced border thickness */
    color: #002060;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Added shadow for depth */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Improved spacing between sections */
    gap: 2rem; /* Added gap for better spacing */
}

.footer-section {
    flex: 1;
    min-width: 250px; /* Increased minimum width */
    padding: 1rem;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.8rem; /* Adjusted font size */
    font-weight: bold;
    margin-bottom: 0.8rem; /* Increased spacing */
    color: #FF6600;
}

.footer-logo {
    text-align: center; /* Centered logo */
}

.footer-logo img {
    max-width: 100%; /* Ensures logo is responsive */
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px; /* Added slight rounding for aesthetics */
}

.footer-description {
    font-size: 1.2rem;
    color: #2C6E0B;
    margin-top: 0.5rem;
    line-height: 1.5; /* Improved readability */
}

.footer-section ul {
    list-style: none;
    padding: 0;
    color: #002060;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem; /* Added spacing between items */
}

.footer-section ul li a {
    text-decoration: none;
    color: #002060;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.2s ease; /* Added a slight hover animation */
}

.footer-section ul li a:hover {
    color: #FF6600;
    transform: translateX(4px); /* Subtle movement on hover */
}

.contribute-button,
.whatsapp-button {
    display: inline-block; /* Ensures proper alignment */
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    margin-top: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contribute-btn {
    text-align: left;
  }

  .contribute-btn a {
    display: inline-block;
    background-color: #4E9736; /* Initial background color */
    color: white; /* Initial text and icon color */
    text-align: center;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease; /* Smooth transitions */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .contribute-btn a i {
    margin-right: 8px; /* Space between icon and text */
  }

  /* Hover effect */
  .contribute-btn a:hover {
    background-color: #45a049; /* New background color */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
    transform: translateY(-2px); /* Button lift effect */
  }

.whatsapp-button {
    background-color: #4E9736;
    color: #FFFFFF;
    border-radius: 30px;
}

.whatsapp-button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #002060;
    border-top: 1px solid #FF6600;
    margin-top: 2rem;
}

.footer-bottom a {
    color: #002060;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #FF6600;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem; /* Added spacing between icons */
}

.social-icons a {
    color: #002060;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
    color: #FF6600;
    transform: rotate(10deg); /* Slight rotation effect */
}

.join-whatsapp h3 {
    font-size: 1.6rem;
    color: #FF6600;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.join-whatsapp .footer-section a {
    color: #002060;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 0.3rem;
    display: block;
}

.join-whatsapp .footer-section a:hover {
    color: #FF6600;
}

/* Responsive styling for mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem; /* Adjusted gap for smaller screens */
    }

    .footer-section {
        min-width: 100%;
        padding: 1rem;
    }

    .footer-logo img {
        max-width: 80%;
    }

    .footer-description {
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .social-icons a {
        font-size: 1.3rem;
    }
}
