* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    text-transform: capitalize;
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    background-color: #000000;
    padding: 15px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-height: 100px;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 25px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #880808;
}

.page {
    display: none;
    padding: 60px 20px;
    text-align: center;
    flex: 1; /* Allows content to take up available space */
}

#home-page {
    display: block;
}

.header {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-radius: 10px;
}

.header h1 {
    font-size: 3.5em;
    color: #000000;
    font-weight: 700;
}

.header p {
    font-size: 1.2em;
    color: #333;
    margin-top: 10px;
}

.cta-button {
    background-color: #000000;
    color: white;
    font-size: 1.1em;
    padding: 15px 30px;
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #880808;
}

.page h2 {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 20px;
}

.page p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
}

footer {
    background-color: #333;
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-size: 1em;
    margin-top: 40px;
    flex-shrink: 0; /* Prevent footer from shrinking */
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        padding-top: 10px;
    }

    .navbar ul li {
        margin: 10px 0;
    }
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.founder-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: block;
    margin: 20px auto;
}
#donate-page ul span {color: #880808; text-transform: none;}
