body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8fbff;
    margin: 0;
    color: #222;
}
header nav {
    display: flex;
    align-items: center;
    background: #0056b3;
    padding: 10px 20px;
}
.logo {
    height: 60px;
    margin-right: 25px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: ##FFFF00;
    text-decoration: none;
    font-weight: bold;
    transition: color .2s;
}
nav ul li a:hover {
    color: #ffd600;
}
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(90deg, #0056b3 60%, #ffd600 100%);
    color: #fff;
    padding: 60px 30px 30px 30px;
}
.hero-text {
    flex: 1;
    min-width: 300px;
}
.hero-img {
    flex: 1;
    max-width: 400px;
    border-radius: 12px;
    margin-left: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,.13);
}
.cta-buttons {
    margin-top: 18px;
    display: flex;
    gap: 15px;
}
.btn {
    padding: 10px 26px;
    border-radius: 6px;
    border: none;
    color: #0056b3;
    background: #ffd600;
    font-weight: bold;
    text-decoration: none;
    transition: background .2s;
    box-shadow: 0 2px 6px rgba(0,0,0,.07);
}
.btn:hover {
    background: #FAFA33;
    color: #0056b3;
}
.btn-donate { background: #ffd600; color: #0056b3;}
.btn-volunteer { background: #fff; color: #0056b3; border: 2px solid #ffd600;}
.btn-learn { background: #0056b3; color: #fff;}
.impact-stats {
    background: #fff;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stats {
    display: flex;
    gap: 30px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.stats div {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 22px;
    min-width: 120px;
    text-align: center;
}
.stats span {
    font-size: 2.6em;
    color: #0056b3;
    font-weight: bold;
}
.stories-preview {
    background: #fffde7;
    padding: 30px 20px;
}
.story-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.story-cards .card {
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    padding: 18px;
    max-width: 250px;
    flex: 1;
}
.story-cards .card img {
    width: 100%;
    border-radius: 7px;
    margin-bottom: 10px;
}
.transparency {
    background: #e3f2fd;
    text-align: center;
    padding: 32px 20px;
}
footer {
    background: #0056b3;
    color: #fff;
    padding: 30px 20px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.footer-links {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
}
.footer-links li a img {
    height: 26px;
    margin-right: 8px;
}
.footer-logo {
    height: 40px;
    margin-right: 18px;
}
.about-mission, .core-values, .programs, .gallery, .donate-section, .volunteer-section, .reports-section, .legal-section, .contact-section {
    background: #fff;
    margin: 24px auto;
    padding: 40px 25px;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 3px 14px rgba(0,0,0,.07);
}
.core-values ul {
    padding-left: 22px;
}
.programs .story-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.programs .story {
    flex: 1;
    min-width: 220px;
    background: #e3f2fd;
    padding: 14px;
    border-radius: 7px;
    margin-bottom: 14px;
}
.programs .story img {
    width: 100%;
    border-radius: 7px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 8px;
}
.donate-options {
    display: flex;
    gap: 30px;
    margin: 24px 0;
    flex-wrap: wrap;
}
.donate-options .option {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    flex: 1;
    min-width: 170px;
}
.donate-options .option img {
    width: 60px;
    border-radius: 6px;
}
.bank-details, .qr-code {
    margin: 24px 0;
    background: #fffde7;
    padding: 18px;
    border-radius: 8px;
    max-width: 400px;
}
.qr-code img {
    max-width: 140px;
}
.donate-form, .volunteer-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.donate-form label, .volunteer-form label {
    font-weight: bold;
}
.donate-form input, .donate-form select, .donate-form textarea,
.volunteer-form input, .volunteer-form textarea {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #b3d4fc;
    font-size: 1em;
}
.donate-form button, .volunteer-form button {
    margin-top: 10px;
    padding: 12px;
    font-size: 1em;
    border-radius: 6px;
    background: #0056b3;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
}
.donate-form button:hover, .volunteer-form button:hover {
    background: #ffd600;
    color: #0056b3;
}
.success {
    background: #e3f2fd;
    color: #0056b3;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 8px;
}
.transparency-note {
    font-size: 0.95em;
    color: #555;
    margin-top: 18px;
}
.testimonials {
    margin-top: 32px;
}
.testimonial-list blockquote {
    background: #e3f2fd;
    border-left: 5px solid #ffd600;
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 6px;
    font-style: italic;
}
.reports-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}
.reports-section th, .reports-section td {
    border: 1px solid #b3d4fc;
    padding: 10px;
    text-align: left;
}
.reports-section th {
    background: #0056b3;
    color: #fff;
}
.reports-section .trust-badges img {
    height: 38px;
    margin-right: 12px;
}
.legal-section .trust-badges img {
    height: 38px;
    margin-right: 12px;
}
.contact-details {
    margin-bottom: 22px;
}
.contact-details .social-links a img {
    height: 32px;
    margin-right: 8px;
}
.map {
    margin-top: 18px;
    border-radius: 8px;
    overflow: hidden;
}
@media (max-width: 800px) {
    .hero, .footer-content, .donate-options {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-img {
        margin: 30px 0 0 0;
        max-width: 100%;
    }
    .footer-content {
        align-items: flex-start;
    }
}