:root {
    --ffff: #ffffff;
    --e3e3: #e3e3e3;
    --2749: #0e2749;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--ffff);
    color: var(--2749);
    font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', sans-serif;
    font-feature-settings: 'tnum' on, 'lnum' on, 'case' on;
    -webkit-font-smoothing: antialiased;
}

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

.header {
    border-bottom: 1px solid var(--e3e3);
    padding-top: 22px;
    padding-bottom: 22px;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.fb-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    height: 35px;
    min-height: 35px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.body-block {
    flex: 1;
}

.banner {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

.content {
    padding: 64px 16px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.content h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px 0;
    color: var(--2749);
}

.content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: var(--2749);
}

@media (max-width: 768px) {
    .banner {
        height: 240px;
    }
    .content {
        padding: 40px 16px;
    }
    .content h1 {
        font-size: 28px;
    }
}
