.services {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    gap: 50px;
    background: url(About\ Us/Background.avif);
    padding: 20px 0;
}

.inner-services {
    display: flex;
    flex-direction: row;
    margin: 0 60px;
    gap: 10%;
    align-items: center;
    box-shadow: 5px 5px 20px black;
    padding: 10px;
}

.inner-services img {
    width: clamp(100px,20vw,200px);
    height: clamp(100px,20vw,200px);;
}

.inner-services h1 {
    font-family: 'Arial', sans-serif;
    font-size: clamp(20px, 5vw, 50px);
    text-align: center;
}

.inner-services p {
    font-family: 'Arial', sans-serif;
    font-size: clamp(5px, 2.5vw, 25px);
    text-align: center;
}

