.services-container {
    padding: 2rem;
}

.services-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-category {
    margin-bottom: 2rem;
}

.service-category h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 1rem;
    color: #666;
}

.services_container_section{
    margin: 0 2rem;
    width: 100%;
}
.services-container-main-right{
    margin-top:3.9rem;
}

.service_button{
    height:56px;
    margin-top:1rem;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00AFF2;
    padding: 1rem 0;
    border-radius: 8px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.service_button:hover {
    background-color: #007aa9;
}
#all_services{
    position:relative;
    top:-751px;
}
.service-purchase-card{
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    position: sticky; /* Make it sticky */
    top: 75px; /* Space from top */
    align-self: start; /* Align to the start of the grid cell */
    border:1px solid lightgray;
    transition: all 0.3s ease;
}
@media (max-width: 900px){

    .service-item{
        font-size:0.875rem;
    }
    #all_services{
        position:relative;
        top:-1000px;
    }

    .services_container_section{
        margin-left:0;
       padding-left:0.5rem;
        padding-right:0.5rem;
    }

    .services-container-main-right{
        display:flex;
        margin-top:0;
        padding-left:0.5rem;
        padding-right:0.5rem;
    }
    .service-purchase-card{
        margin-top:0;
    }
}