/* volunteer */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

h1, h2 {
    color: #2c3e50;
}

header {
    background-color: #2980b9;
    color: white;
    padding: 20px 0;
    text-align: center;
}


section {
    padding: 20px;
    margin: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
    border-bottom: 2px solid #2980b9;
    padding-bottom: 10px;
}

section ul {
    padding-left: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea, form select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background-color: #2980b9;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

form button:hover {
    background-color: #217dbb;
}

footer {
    background-color: #34495e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-contact, .footer-social, .footer-donations {
    margin: 20px;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.footer-donations .donate-btn {
    background-color: #27ae60;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.footer-donations .donate-btn:hover {
    background-color: #219150;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .top-bar {
        flex-direction: column;
    }
    
    nav ul {
        flex-direction: column;
    }
}
