#loan-calculator {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    max-width: 800px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

#loan-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.loan-section {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

.loan-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

#loan-form, #lead-form {
    display: flex;
    flex-direction: column;
}

#loan-form label, #lead-form label {
    text-align: left;
    margin-bottom: 5px;
}

#loan-form input, #lead-form input {
    padding: 8px;
    margin-bottom: 10px;
}

button {
    background-color: #ff6f00;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1em;
}
