@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: #ffffff;
    /* Entire background white */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem 4rem;
    color: #1e3a8a;
    position: relative;
    overflow-x: hidden;
}

/* Subtle background shapes or gradient if needed, but keeping it clean white as requested */

header {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Adjust based on logo size */
    object-fit: contain;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 6rem;
    line-height: 1;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

p {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Add a subtle underline or border to the header for separation if needed, 
   but minimalist style often omits it. */

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem 2rem;
    }

    header {
        justify-content: center;
        padding-bottom: 2rem;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}