.service-overview {
    background: #fff;
}

.service-content h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.service-content .lead {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0;
    color: #7f8c8d;
    font-size: 1.05rem;
}

.service-list li i {
    color: #28a745;
    margin-right: 10px;
}

.service-image img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Details */
.details-content h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-type {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #2c3e50;
}

.service-type h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Documents Section */
.document-list {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.document-list h5 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.document-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-list li {
    padding: 8px 0;
    color: #7f8c8d;
    border-bottom: 1px solid #f1f1f1;
}

.document-list li:last-child {
    border-bottom: none;
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
}

.service-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-categories li {
    margin-bottom: 10px;
}

.service-categories li:last-child {
    margin-bottom: 0;
}

.service-categories a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #7f8c8d;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-categories a:hover,
.service-categories li.active a {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 500;
}

.service-categories a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-info {
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 20px;
    margin-right: 10px;
    color: #2c3e50;
    margin-top: 3px;
}

.contact-item a,
.contact-item span {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.contact-item a:hover {
    color: #2c3e50;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

.cta-section h2 {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-content .lead {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 50px;
    }
    
    .service-type {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .service-content h2 {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .document-list {
        padding: 15px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

