/* Services Categories Styles */
.services-categories {
    margin-bottom: 60px;
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dark-theme .category-title {
    color: #e0e0e0;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.service-tag {
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    cursor: default;
}

.service-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.dark-theme .service-tag {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
    border-color: #555;
    color: #b0b0b0;
}

.dark-theme .service-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

@media (max-width: 768px) {
    .category-title {
        font-size: 20px;
    }
    
    .service-tag {
        font-size: 13px;
        padding: 8px 16px;
    }
}