/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', Arial, sans-serif;
    line-height: 1.4;
    color: black;
    background-color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Non-profit header */
.nonprofit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #ccc;
}

.nonprofit-header .left {
    font-size: 1.2rem;
    font-weight: 500;
}

.nonprofit-header .right {
    font-size: 0.9rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.github-link {
    display: inline-flex;
    align-items: center;
    color: black;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.github-link:hover {
    opacity: 0.7;
}

.github-link svg {
    display: block;
}

/* Content */
.content {
    max-width: 700px;
    margin: auto;
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission, .vision {
    text-align: left;
    margin-bottom: 2rem;
}

.vision {
    margin-bottom: 4rem;
}

.mission h2, .vision h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.mission h2, .vision h2 {
    text-align: left;
}

.mission p, .vision p {
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    line-height: 1.5;
}

.mission p:last-child, .vision p:last-child {
    margin-bottom: 0;
}
