body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center; /* Center align the text */
}

header {
    background-color: #03A9F4;
    color: #fff;
    padding: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px; /* Rounded corners */
}

header .logo {
    height: 80px; /* Increased logo size */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 2rem;
    text-align: center; /* Center align the main content text */
}

.banner {
    background-color: #8BC34A;
    color: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 15px; /* Rounded corners */
}

ul {
    text-align: left; /* Align the bullet points to the left */
    display: inline-block; /* Center the list in the middle of the page */
    padding-left: 20px; /* Ensure padding for the list */
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align the form content */
}

form label {
    margin-top: 1rem;
}

form input, form textarea {
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    width: 100%; /* Ensure input fields take full width */
    max-width: 500px; /* Limit the maximum width for better readability */
}

form button {
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #03A9F4;
    color: #fff;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #0288D1;
}

.whatsapp-icon {
    height: 24px;
    vertical-align: middle;
}
