:global(body) {
    margin: 0;
    font-family: 'Mulish', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero {
    text-align: center;
    color: #fff;
    padding: 5rem 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter input {
    padding: 0.8rem;
    font-size: 1rem;
    width: 300px;
    max-width: 100%;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter button {
    padding: 0.8rem 1.5rem;
    background: #00416d;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.newsletter button:hover {
    background: #002e4a;
}

section {
    padding: 4rem 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #00416d;
}

@media (max-width: 768px) {
    .donation-buttons {
        flex-direction: column;
    }

    .latest-posts article {
        flex-direction: column;
        text-align: center;
    }

    .latest-posts img {
        margin: 0 0 1rem 0;
    }
}