body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    position: relative;
}
.hero {
    background: url('img/hero-banner.jpg');
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
}
.hero .form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
}
.btn-custom {
    background-color: #ff6600;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}
.btn-custom:hover {
    background-color: #e65c00;
}
.feature-img {
    border-radius: 10px;
    width: 100%;
}
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
.form-section{
    background-color: #FAA91C;
}
.price span{
    font-size: 26px;
    font-weight: 700;
}
.price .actual-pr{
    position: relative;
}
.price .dis-pr{
    color: red;
    margin-left: 15px;
}
.price .actual-pr::before{
    position: absolute;
    content: '';
    top: 13px;
    left: 7px;
    background-color: red;
    width: 90px;
    height: 3px;
    z-index: 1;
    transform: rotate(20deg);
}
.buy-now-form{
    max-width: 350px;
    margin: 0 auto;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
@media (max-width:767px) {
    .btn-custom{
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }
    .hero{
        height: 30vh;
        padding: 50px 20px 0;
    }
}
