footer {
 background-color: #222;
 color: #eee;
 padding: 10px 10px 10px;
 font-family: 'Arial', sans-serif;
}

.footer-container {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 gap: 30px;
 max-width: 1200px;
 margin: 0 auto;
}

.footer-section {
 flex: 1 1 200px;
 min-width: 200px;
}

.footer-section h3 {
 font-size: 1.2rem;
 margin-bottom: 0px;
 color: #fff;
 border-bottom: 1px solid #444;
 padding-bottom: 5px;
}

.footer-section ul {
 list-style: none;
 padding: 0;
}

.footer-section ul li {
 margin: 8px 0;
}

.footer-section ul li a {
 color: #ccc;
 text-decoration: none;
 transition: color 0.3s ease;
}

.footer-section ul li a:hover {
 color: #fff;
}

.footer-section p {
 margin: 6px 0;
}

.footer-section img {
 width: 24px;
 margin-right: 10px;
 vertical-align: middle;
 filter: grayscale(1);
 transition: filter 0.3s ease;
}

.footer-section a:hover img {
 filter: none;
}

.footer-bottom {
 text-align: center;
 border-top: 1px solid #444;
 margin-top: 30px;
 padding-top: 15px;
 font-size: 0.9rem;
 color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
 .footer-container {
   flex-direction: column;
   align-items: center;
   text-align: center;
 }
}

.footer-section ul li a i {
 margin-right: 8px;
}

.footer-section .social-icons a {
 display: inline-block;
 margin-right: 10px;
 color: #ccc;
 font-size: 1.2rem;
 transition: color 0.3s;
}

.footer-section .social-icons a:hover {
 color: #fff;
}

.footer-section.newsletter input[type="email"] {
 padding: 10px;
 width: 80%;
 max-width: 220px;
 border: none;
 border-radius: 5px;
 margin-bottom: 10px;
}

.footer-section.newsletter button {
 padding: 10px 15px;
 border: none;
 background-color: #0077cc;
 color: white;
 border-radius: 5px;
 cursor: pointer;
 transition: background-color 0.3s ease;
}

.footer-section.newsletter button:hover {
 background-color: #005fa3;
}

.donate-button {
    padding: 8px 12px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
}