.get-quote {
    display: flex;
    gap: 10px; /* Space between buttons */
    justify-content: flex-end; /* Align buttons to the right */
}

.get-quote .btn {
    background-color: #007bff; /* Blue background */
    color: #fff; /* White text */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.get-quote .btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
