body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #FAFAFA;
    color: #1F3A93;
}

.hero {
    background: #1F3A93;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.logo-container img {
    width: 240px;
    height: auto;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    color: #F1C40F;
    margin-top: -10px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 2rem 1rem;
    max-width: 900px;
    margin: auto;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: #1F3A93;
}

.content-section ul {
    padding-left: 1.5rem;
    color: #333;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"],
.newsletter-form textarea {
    padding: 0.6rem;
    width: 90%;
    max-width: 400px;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 0.6rem 1.2rem;
    background-color: #27AE60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.donate-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background-color: #F1C40F;
    color: #1F3A93;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #BDC3C7;
    font-size: 0.9rem;
}