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

body {
    background-color: #F7F5F0;
    color: #0B0B0B;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 4rem);
}

/* Content block - shifted upward from center */
.content-block {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    transform: translateY(-6vh);
}

/* Header & Logo */
header {
    margin-bottom: 3.4rem;
}

.logo {
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Typography */
.mission-statement {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #2A2A2A;
}

/* Footer */
footer {
    font-size: 0.7rem;
    color: #6A6A6A;
    letter-spacing: 0.02em;
    text-align: center;
    padding-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    body {
        padding: 1.5rem;
    }
    
    .container {
        min-height: calc(100vh - 3rem);
    }
    
    .content-block {
        transform: translateY(-4vh);
    }
    
    .logo {
        max-width: 220px;
    }
    
    header {
        margin-bottom: 2.8rem;
    }
    
    .mission-statement {
        font-size: 1.05rem;
    }
}