/* Services Hero Section */
.services-hero-section {
    background: linear-gradient(to right, #f8f9fa 50%, #ffffff 50%);
    padding: 80px 0;
}

.service-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.icon-box {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.icon-box span {
    display: block;
    font-weight: 500;
}

/* Main Services Section */
.service-article {
    padding: 3rem 0;
}

.service-icon-wrapper {
    color: var(--bs-primary);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 1rem;
}

.service-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 300px;
}

.icon-illustration {
    width: 200px;
    height: 200px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
}

/* Additional Features Section */
.feature-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    color: var(--bs-primary);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .services-hero-section {
        background: #f8f9fa;
    }
    
    .service-icon-grid {
        margin-top: 3rem;
    }
    
    .service-image-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .service-icon-grid {
        grid-template-columns: 1fr;
    }
} 