html,
body {
    height: 100%;
    margin: 0;
}

body {
    background-color: rgb(48, 131, 196);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.home-body {
    background-color: rgb(48, 131, 196);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(rgba(38, 128, 190, 0.06), rgba(8, 72, 120, 0.06));
    pointer-events: none;
}

.hero {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100vh;
}

.left {
    flex: 1 1 50%;
    overflow: hidden;
}

.right {
    flex: 1 1 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    box-sizing: border-box;
    color: #0b2540;
}

.logo-large {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

h1 {
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    margin: 0 0 0.5rem 0;
}

.desc {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 880px) {
    .hero {
        flex-direction: column;
        height: auto;
    }

    .left {
        width: 100%;
    }

    .logo-large {
        height: 50vh;
        object-fit: contain;
    }

    .right {
        width: 100%;
        padding: 2rem;
        background-color: transparent;
        color: #fff;
        text-align: center;
    }

    .overlay {
        display: none;
    }
}