body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    display: flex;          /* Use Flexbox for the body */
    flex-direction: column; /* Stack elements vertically */
    min-height: 100vh;      /* Ensure body is at least the height of the viewport */
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

header .logo {
    display: inline-block;
}

.hero {
    background-color: #e0f7fa; /* Light teal */
    padding: 60px 0;
}

.hero h1 {
    color: teal;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.button.primary {
    background-color: teal;
    color: #fff;
}

.button.primary:hover {
    background-color: #008080;
}

.features {
    padding: 40px 0;
}

.features h2 {
    color: teal;
    font-size: 2em;
    margin-bottom: 20px;
}

.features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.features ul li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
}

.insights {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.insights h2 {
    color: teal;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.insights p {
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

#feedback-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
}

#feedback-form button {
    background-color: orange;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#feedback-form button:hover {
    background-color: #ff8c00;
}

.signup {
    padding: 50px 0;
}

.signup h2 {
    color: teal;
    font-size: 2em;
    margin-bottom: 20px;
}

#waitlist-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

#waitlist-form input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 1em;
}

#waitlist-form button {
    background-color: orange;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#waitlist-form button:hover {
    background-color: #ff8c00;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    margin-top: auto;   /* Push the footer to the bottom */
}
#hero h1 {
    font-size: 2.5rem; /* Adjust as needed */
    margin: 0 0 1rem 0; /* Adjust as needed */
}

/* Basic Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    #waitlist-form {
        flex-direction: column;
        align-items: center;
    }

    #waitlist-form input[type="email"] {
        border-radius: 5px;
        margin-bottom: 10px;
        width: 80%;
    }

    #waitlist-form button {
        border-radius: 5px;
        width: 80%;
    }
}