/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .content-grid {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h2 {
        font-size: 1.1rem;
    }

    .content-grid,
    .goals-grid,
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .highlight-text {
        font-size: 1.3rem;
    }

    .donation-content {
        padding: 0 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section h2 {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-donate {
        width: 100%;
        text-align: center;
    }

    .progress-text {
        font-size: 0.9rem;
    }

    .goal-item,
    .impact-item {
        padding: 20px;
    }
}
@media screen and (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 12px 24px;
    }
}