body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

header {
    background: #004080;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-logo {
    max-height: 100px;
    border-radius: 6px;
}

.header-center {
    text-align: center;
    flex: 1;
}

.language-switch {
    display: flex;
    gap: 10px;
}

.language-switch a {
    padding: 8px 12px;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.language-switch a:hover {
    background: #ddd;
}

section {
    max-width: 900px;
    margin: 20px auto;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
    color: #004080;
}

.image-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.image-gallery img {
    width: 32%;
    border-radius: 6px;
    object-fit: cover;
}

button {
    background: #008CBA;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px auto;
    display: block;
}

button:hover {
    background: #005f73;
}

footer {
    text-align: center;
    padding: 10px;
    background: #004080;
    color: white;
    margin-top: 20px;
}

.donation img {
    display: block;
    margin: 10px auto;
    max-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-gallery img {
        width: 48%;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    .image-gallery img {
        width: 100%;
    }
    .language-switch {
        justify-content: center;
        margin-top: 10px;
    }
}
