body{
    font-family: Arial, sans-serif;
    margin:0;
    padding:0;
    text-align:center;
    background:#f5f5f5;
}

header{
    background:rgb(228, 111, 111);
    color:white;
    padding:25px;
}

.hero{
    padding:30px;
}

.hero img{
    margin:10px;
    border-radius:10px;
}

button{
    background:#007bff;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:5px;
    cursor:pointer;
}

button:hover{
    background:#0056b3;
}

.why-us,
.products{
    background:white;
    margin:20px;
    padding:20px;
    border-radius:10px;
}

ul{
    list-style:none;
    padding:0;
}

li{
    margin:10px;
}

.product-box{
    background:#ddd;
    padding:20px;
    margin:10px;
    border-radius:8px;
}

footer{
    background:#222;
    color:white;
    padding:20px;
}

.form-container{
    width:400px;
    margin:50px auto;
    background:white;
    padding:30px;
    border-radius:10px;
}

input,
textarea{
    width:100%;
    padding:10px;
    margin:10px 0;
}

footer iframe{
    max-width: 900px;
    margin-top: 15px;
}

h1{
    animation: slideDown 1.5s ease;
}

@keyframes slideDown{
    from{
        opacity:0;
        transform: translateY(-50px);
    }

    to{
        opacity:1;
        transform: translateY(0);
    }
}

button{
    transition: all 0.3s ease;
}

button:hover{
    transform: scale(1.1);
}

.product-box{
    transition: all 0.3s ease;
}

.product-box:hover{
    transform: translateY(-10px);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    background-color: rgb(228, 111, 111);
}

.hero img{
    transition: all 0.4s ease;
}

.hero img:hover{
    transform: scale(1.05);
}

.why-us{
    animation: fadeIn 2s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}

.products{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}

img{
    max-width:100%;
    height:auto;
}

@media (max-width:768px){

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

}

/* Mobile Responsive */

@media (max-width: 768px){

    h1{
        font-size: 35px;
    }

    h2{
        font-size: 24px;
    }

    p{
        font-size: 16px;
    }

    .hero img{
        width: 90%;
        max-width: 300px;
        height: auto;
    }

    button{
        width: 90%;
        margin: 8px 0;
    }

    .form-container{
        width: 90%;
        margin: 20px auto;
    }

    iframe{
        height: 250px;
    }

}