
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #ffffff;
    color: #222;
}
.hero {
    background-color: #e0f4ff;
    text-align: center;
    padding: 30px;
}
.logo {
    width: 100px;
}
.tagline {
    color: #0284c7;
    font-size: 1.2em;
}
.navbar {
    background-color: #0284c7;
    overflow: hidden;
    text-align: center;
}
.navbar a {
    display: inline-block;
    color: white;
    padding: 14px 20px;
    text-decoration: none;
}
section {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}
form input, form select, form button {
    padding: 10px;
    font-size: 1em;
}
form button {
    background-color: #0284c7;
    color: white;
    border: none;
    cursor: pointer;
}
.whatsapp-icon {
    width: 40px;
    margin-top: 10px;
}
footer {
    text-align: center;
    background-color: #0284c7;
    color: white;
    padding: 10px;
}
