body {
    font-family: 'Arial', sans-serif;
    background-color: #e8f5e9; /* Light green background */
    color: #2e7d32; /* Dark green text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 150px; /* Adjust as needed */
}

h1 {
    color: #1b5e20; /* Darker green for heading */
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}
