/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 40px;
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    padding-bottom: 60px;
}

.logo {
    display: block;
    width: 150px;
    height: auto;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
}

.mission-statement {
    font-size: 24px;
    font-weight: 300;
    color: #1a1a1a;
    max-width: 600px;
    line-height: 1.4;
}

/* Footer */
footer {
    padding-top: 60px;
    font-size: 14px;
    color: #888;
    text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 24px;
        /* Kept the slightly larger mobile padding from previous verification */
    }

    .mission-statement {
        font-size: 20px;
    }

    .logo {
        width: 130px;
    }
}