/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: white;
}

header {
    background: url('poorchild.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

header .mission {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}

header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

header p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Navigation Bar */
nav {
    background-color: #333;
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    padding: 14px 20px;
    text-transform: uppercase;
    color: white;
}

nav a:hover {
    background-color: #575757;
    transition: 0.3s ease-in-out;
}

section {
    padding: 60px 20px;
    text-align: center;
}

section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

section p {
    font-size: 18px;
    line-height: 1.8;
}

/* About Us, Vision, Mission */
section.bg-light {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

section.bg-dark {
    background-color: #333;
    color: white;
}

section h1, section h2 {
    margin-bottom: 30px;
}

section.bg-light p, section.bg-dark p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* How It Works Section */
.step {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.step h3 {
    margin-top: 20px;
}

.step p {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Donate Form */
form {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

form button {
    padding: 15px 30px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

form button:hover {
    background-color: #555;
    transition: 0.3s ease-in-out;
}

/* Footer (optional) */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
    font-size: 16px;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 60px 20px;
    }

    header h1 {
        font-size: 36px;
    }

    header p {
        font-size: 16px;
    }

    nav a {
        padding: 10px 15px;
    }

    form, section {
        padding: 30px 20px;
    }

    form button {
        padding: 12px 25px;
        font-size: 16px;
    }
}
