body {
    margin: 0;
    padding: 0;
    background: rgb(53, 92, 125);
    color: #fff;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.logo-section {
    flex: 1 1 33%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.logo {
    max-width: 500px;
    width: 80vw;
    height: auto;
    margin-bottom: 2rem;
}

.statement-section {
    flex: 2 1 67%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.statement-section h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
    letter-spacing: 0.03em;
}

@media (max-width: 600px) {
    .logo {
        max-width: 90vw;
    }
    .statement-section h1 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
}
