    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {

        
        padding-top: 0px;
    }



    /* Footer Styles */
    .footer {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        color: white;
        position: relative;
        overflow: hidden;
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #f7931e, #ffdc00, #00b4db);
    }

    /* Main Footer Content */
    .footer-main {
        padding: 60px 0 40px;
        position: relative;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    /* Footer Logo Section */
    .footer-brand {
        max-width: 350px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-logo img {

        height: 75px;

    }

    .footer-logo h3 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .footer-tagline {
        color: #ffd700;
        font-style: italic;
        font-size: 16px;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .footer-description {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
        margin-bottom: 25px;
    }

    /* Social Media Icons */
    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .social-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        border-color: #ffd700;
    }

    /* Footer Sections */
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #ffd700;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-section h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #ff6b35;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section li {
        margin-bottom: 12px;
    }

    .footer-section a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        padding-left: 0;
    }

    .footer-section a:hover {
        color: #ffd700;
        padding-left: 10px;
    }

    .footer-section a::before {
        content: '→';
        position: absolute;
        left: -15px;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .footer-section a:hover::before {
        opacity: 1;
        left: -5px;
    }

    /* Contact Information */
    .contact-info {
        gap: 15px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.9);
    }

    .contact-icon {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .contact-text {
        flex: 1;
    }

    .contact-link {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-link:hover {
        color: #ffd700;
    }

    /* Donation Section */
    .donation-section {
        background: rgba(255, 255, 255, 0.1);
        padding: 25px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .donation-section h4 {
        color: #ffd700;
        margin-bottom: 15px;
    }

    .donation-section p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .donate-button {
        background: linear-gradient(45deg, #ff6b35, #f7931e);
        color: white;
        padding: 12px 25px;
        border: none;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .donate-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }

    .tax-benefit {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 10px;
    }

    /* Footer Bottom */
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 25px 0;
        text-align: center;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .copyright {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    .footer-links {
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #ffd700;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 30px;
        }
        .footer-logo img {

        height: 110px;

    }
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .footer-brand {
            grid-column: 1 / -1;
            max-width: 100%;
            text-align: center;
            margin-bottom: 20px;
        }

        .donation-section {
            grid-column: 1 / -1;
        }

        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-links {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .footer-main {
            padding: 40px 0 30px;
        }

        .footer-container {
            padding: 0 15px;
        }

        .social-links {
            justify-content: center;
        }

        .footer-links {
            flex-direction: column;
            gap: 15px;
        }
    }

    /* Background Pattern */
    .footer::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
        opacity: 0.1;
        pointer-events: none;
    }