.rental-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: flex-start;
    text-align: center;
    color: white;
    padding: 20px;
}

.rental-banner__content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    color: white;
    border-radius: 10px;
}
.rental-banner__content p {
    color: white;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: var(--theme-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}


.btn-primary:hover {
    background: var(--second-theme-color);

}