body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f8fb;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #005f73;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin: 5px 0 0;
}

nav {
    background-color: #0a9396;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
}

nav ul li a:hover {
    background-color: #94d2bd;
    color: #005f73;
}

.section {
    padding: 40px 0;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #005f73;
}

.section p, .section ul {
    font-size: 1rem;
    line-height: 1.6;
}

ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    display: inline-block;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    padding-bottom: 20px;
}

form label {
    font-weight: bold;
    margin: 10px 0 5px;
    font-size: 1rem;
}

form input, form textarea {
    width: 80%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

form button {
    background-color: #005f73;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 15px;
}

form button:hover {
    background-color: #0a9396;
}

form label[for="consent"] {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-top: 10px;
}

footer {
    background-color: #005f73;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
    }

    header h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    form input, form textarea {
        width: 100%;
    }

    form button {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }
}
