/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #FFFFFF;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 1rem;
    margin-top: 10vh; /* To ensure the logo is not cropped at the top */
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.content h2 {
    color: #0077c2; /* Adjust this color if needed */
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
}
