.services {
    margin: 80px auto;
    width: 100%;
    max-width: 800px;

}

.head h3 {
    margin-bottom: 40px;
    text-align: center;
}

.service-column {
    margin-bottom: 80px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.service-content {
    flex: 1;
    min-width: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: #3a3a3a;
    line-height: 1.5;
}

.service-features li i {
    color: #199513;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-features li span {
    display: inline-block;
}
.service-image{
    flex: 1;
    position: relative;
    height: 100%;
    max-height: 500px;
    z-index: 0;
}

/* Background blur effect */
.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/blob-1.png') no-repeat center center;
    background-size: cover;
    filter: blur(130px);
    opacity: 0.6;
    z-index: -1;
}


.service-image img {
    max-width: 100%;
    height: auto;
}

.service-details {
    margin: 40px auto 0;
    max-width: 1000px;
    line-height: 1.7;
}

.service-details p {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-row, .reverse {
        flex-direction: column;
    }
    
    .service-content, .service-image {
        width: 100%;
    }
    
    .service-image {
        margin-top: 30px;
    }
    
    .service-image img {
        max-width: 100%;
    }
    .head h3 {
    margin-bottom: 20px;
    }

    .service-column {
        margin-bottom: 40px;
    }
}
