.home-loan-calculator {
    display: flex;
    gap: 30px;
    font-family: Arial, sans-serif;
}
.calculator-left {
    flex: 1;
}
.calculator-left label {
    display: block;
    margin-top: 15px;
}
.calculator-left input[type=range] {
    width: 100%;
}
.calculator-left input[type=number] {
    width: 100px;
    margin-top: 5px;
}
.calculator-right {
    flex: 1;
}
.loan-expert-btn {
    background-color: #1f4e79;
    color: #fff;
    padding: 10px 20px;
    border: none;
    margin-top: 15px;
    cursor: pointer;
}
.loan-expert-btn:hover {
    background-color: #16395a;
}
