body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #ffc7d6; /* Light background for better readability */
    margin: 0;
    padding: 0;
    line-height: 1.6; /* Improve line spacing for readability */
}

.container {
    max-width: 1200px; /* Maximum width */
    margin: 0 auto; /* Centering */
    padding: 0 15px; /* Inner spacing */
}

header {
    background: #fa7298; /* A less saturated pink for a more modern look */
    text-align: center; /* Center aligns the content */
    padding: 1rem 0;
}

.logo-container {
    margin-bottom: 0rem; /* Adds space below the logo */
}

.logo {
    width: 400px; /* or any other size you prefer */
    height: auto; /* maintains the aspect ratio of the image */
    /* Additional properties for better alignment and display can be included here */
}

nav ul {
    list-style: none;
    padding: 0;
    /* Center align the inline-block or inline elements */
    display: inline-block; /* This will center the ul in the nav if the nav has text-align: center; */
    margin: 0; /* Removes default margin */
}

nav ul li {
    display: inline; /* Keeps the list items in a row */
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-family: 'Poppins', sans-serif; /* Use a different font for headings and nav for contrast */
}

.button {
    background-color: #ff5e8a; /* A modern vibrant pink */
    color: white;
    padding: 0.5rem 0.5rem;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.3rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* subtle shadow for depth */
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #e94e77; /* Slightly darker on hover for interactive feedback */
}

#hero {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #ffc7d6; /* Assuming you have a background image */
    background-size: cover;
    color: #333; /* White text on a dark background image for contrast */
}

main {
    padding: 1rem 1rem;
    text-align: center;
}

main h2 {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin-bottom: 0.5rem;
}

section {
    margin-bottom: 2rem;
}

footer {
    background: #fa7298;
    text-align: center;
    padding: 1rem 0;
    color: #fff;
}

footer p {
    margin: 0;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    nav ul li {
        display: block;
        margin-bottom: 0.5rem;
    }
}

/* Add additional styles and media queries for full responsiveness */


#early-access-form {
    text-align: center;
    margin-top: 20px;
}

#early-access-form input[type="email"] {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 250px; /* Or any width that fits your design */
}

#early-access-form button {
    /* The button styles will be the same as the .button class */
}
