/* services.css */

body{
    margin:0;
    padding:0;
    height:100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

    
}

.service-container {
    text-align: center;
    margin-top: 50px;

}

.service-container h2 {
    font-size: 36px;
    font-family: Montserrat;
}

.service-lines {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.service-line {
    width: 40%;
    border-top: 2px solid #000;
    margin: 0 10px;
    font-family: Montserrat;
}

.service-sections {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.service-section {
    text-align: center;
    width: 30%;
    margin-bottom: 30px;
}

.service-section img {
    width: 100%;
    max-width: 60px;
    height: auto;
}

.service-section h3 {
    margin-top: 20px;
    font-size: 24px;
    font-family: Montserrat;
}

.service-section p {
    margin-top: 10px;
    font-family: Montserrat;
}








