
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #eef1f7;
}
header {
    background-color: #2b4e87;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 50px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.donate-btn {
    background-color: #ffd700;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    color: #000;
}
.hero {
    background: url('hero-placeholder.jpg') no-repeat center center/cover;
    padding: 5rem;
    text-align: center;
    color: #fff;
}
.news {
    padding: 2rem;
    background-color: white;
}
.news h2 {
    text-align: center;
    color: #2b4e87;
}
.news-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}
.news-item {
    width: 300px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.news-item h3 {
    font-size: 1.1rem;
    margin: 0.5rem;
}
.news-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem;
}
footer {
    text-align: center;
    background: #2b4e87;
    color: white;
    padding: 1rem;
    margin-top: 2rem;
}
