.solution-details {
    margin-left: 20px;
}

p {
    line-height: 2.5;
}

h3 {
    line-height: 2.5;
}

ul li {
    line-height: 2.0;
}

.section {
    padding: 0px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    text-align: center;
    margin-bottom: 15px;
}

.circle-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-card h3 {
    text-align: center;
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 16px;
}

.service-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .feature-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }
}