body {
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-style: normal;
}

.service1 {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin: 10px 0px;
}

.service2 {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 10px 0px;
}

.list {
    width: 50%;
}

.full-screen-image {
    height: 100vh;

    object-fit: cover;

    object-position: center;

}

.roadmap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    position: relative;
    flex: 1 1 200px;
    /* Responsive width for steps */
}

.step img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #ddd;
    margin-bottom: 10px;
}

.step h5 {
    font-size: 1rem;
}

.roadmap::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #2c2c2c;
    z-index: -1;
}

.step:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #ccc;
    z-index: -1;
}

.step:first-child::before {
    display: none;
}

@media (max-width: 768px) {
    .roadmap {
        flex-direction: column;
        align-items: center;
    }

    .roadmap::before {
        content: none;
    }

    .step {
        position: relative;
    }

    .step:not(:first-child)::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 40px;
        background-color: #ccc;
    }

    .step img {
        width: 200px;
        height: 200px;
    }

    .step h5 {
        font-size: 0.9rem;
    }
}


@media (max-width: 480px) {
    .service1 {
        display: block;
        justify-content: center;
    }

    .service1 ul {}

    .service2 {
        display: block;
        justify-content: center;
    }

    .list {
        width: 100%;
    }
}

/* download link */
.container-link {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.app-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-app img {
    /* width: 160px; */
    height: auto;
    transition: transform 0.3s ease;
}

.btn-app img:hover {
    transform: scale(1.05);
}
.linkSection{
display: flex;
gap: 50px;
}

@media (max-width: 768px) {
    .app-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .linkSection{
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }
    .app-image{
        width: 300px;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .app-image img{
        width: 200px !important;
    }
}