.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
  
.banner-image {
    width: 100%;
    height: 500px;
}

.header {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

label {
    margin-right: 10px;
}

select {
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    font-size: 14px;
    padding: 10px 20px;
    background-color: #00b38f;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #00997a; 
}