

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f1f5f9;
    color: #1f2937;
    line-height: 1.7;
    font-size: 1rem;
   text-align: center;
   list-style: none;

}

/* Container */
.container {
    max-width: 1000px;
    margin: 2rem auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

h1 {
    color: #173054;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subheading {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

/* Sections */
section {
    margin: 2rem 0;
}

h2 {
    color: #173054;
    font-size: 1.75rem;
    font-weight: 600;
    border-bottom: 2px solid #173054;
    padding-bottom: 0.5rem;
    margin-top: 2.5rem;
    list-style: none;
}

h3 {
    color: #173054;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
     list-style: none;
    

}

p {
    margin: 1rem 0;
}

ul {
    padding-left: 1.5rem;
    list-style: disc;
    margin: 1rem 0;
     list-style: none;
}

ul li {
    margin-bottom: 0.5rem;
     list-style: none;
}

/* Links */
a.donate-link, a.contact-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
     list-style: none;
}

a.donate-link:hover, a.contact-link:hover {
    text-decoration: underline;
}

/* Image Placeholder */
.content-image {
    width: 100%;
    max-width: 900px;
    height: 500px;
    background-color: #e6f0fa;
    color: #173054;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    font-weight: bold;
    font-size: 1rem;
    border: 2px dashed #173054;
    border-radius: 8px;
    text-align: center;
}

/* Blockquote */
blockquote {
    margin: 2rem 0;
    font-style: italic;
    color: #173054;
    border-left: 4px solid #173054;
    padding-left: 1rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    margin-top: 3rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .content-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    p, ul li {
        font-size: 0.95rem;
    }
}