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

body {
    /* Setting the background color to match the dark blue tone in the image */
    background-color: #0A192F; /* A very deep, professional navy blue */
    color: #FFFFFF; /* Pure white text for high contrast */
    
    /* Use Flexbox to perfectly center the content on the screen */
    min-height: 100vh; /* Ensures the body takes up at least the full viewport height */
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    text-align: center; /* Ensures text blocks are centered if they wrap */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

/* Main Content Wrapper */
.container {
    padding: 40px; /* Adds breathing room around the text block */
    max-width: 900px; /* Prevents the text from stretching across massive screens */
    width: 90%;
}

header h1 {
    font-size: 4rem; /* Large, impactful title */
    font-weight: 700;
    letter-spacing: 2px; /* Subtle spacing adds to the premium feel */
    margin-bottom: 15px;
}

main p {
    font-size: 1.25rem; /* Readable paragraph size */
    line-height: 1.6; /* Improves readability of blocks of text */
    max-width: 700px; /* Keeps the descriptive text focused */
    font-weight: 300; /* Lighter weight for description vs. header */
}

/* Optional: Media query for smaller screens (mobile responsiveness) */
@media (max-width: 600px) {
    header h1 {
        font-size: 2.5rem; /* Scale down the title on mobile */
    }
    main p {
        font-size: 1rem;
    }
}
