* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.ServicePage {
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 50px; */
}

.ServicePageInner {
    width: 80%;
    background-color: #86211B;
    /* background-color: #0c1439; */
 
    box-shadow: 2px 2px 5px black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    margin: 100px;
}

.ServicePageInner h2 {
    margin-top: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 48px;
    margin-left: 25px;
    margin-right: 25px;
    text-align: center;
}
.ServicePageInner img{
    margin-top: 100px;
    width: 150px;
}
.ServicePageInnerDescription{
   
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 100px;
    margin-right: 100px;
    font-size: 1.2rem;
   
}

.ServicePageInner p {
    font-family: Arial, Helvetica, sans-serif;

}
.ServicePageInner strong {
    font-family: Arial, Helvetica, sans-serif;

}

@media only screen and (max-width: 700px) {
    .ServicePageInnerDescription{
   
      
        margin-left: 50px;
        margin-right: 50px;
       
       
    }
  }
@media only screen and (max-width: 550px) {
    .ServicePageInner {
        margin: 20px;
        width: 90%;
    }
    .ServicePageInner h2 {
        margin-top: 50px;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 48px;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }
    .ServicePageInnerDescription{
   
      
        margin-left: 40px;
        margin-right: 40px;
       
       
    }
  }
@media only screen and (max-width: 350px) {
    .ServicePageInner {
        margin: 0px;
        width: 100%;
    }
   
  }